aboutsummaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authorMarkus Rost2002-10-15 05:15:40 +0000
committerMarkus Rost2002-10-15 05:15:40 +0000
commite170d16cb0166ea636bb06f22e57f57bff66101f (patch)
treed2ae4240da3afa492725cddd059311640580802c /admin
parenta80d729082f3020956b6e260f8edd9f93c1a6551 (diff)
downloademacs-e170d16cb0166ea636bb06f22e57f57bff66101f.tar.gz
emacs-e170d16cb0166ea636bb06f22e57f57bff66101f.zip
(cus-test-libs): Use equal instead of =.
Diffstat (limited to 'admin')
-rw-r--r--admin/ChangeLog4
-rw-r--r--admin/cus-test.el3
2 files changed, 6 insertions, 1 deletions
diff --git a/admin/ChangeLog b/admin/ChangeLog
index b6ad402b94d..c1813dcc8d9 100644
--- a/admin/ChangeLog
+++ b/admin/ChangeLog
@@ -1,3 +1,7 @@
12002-10-15 Markus Rost <rost@math.ohio-state.edu>
2
3 * cus-test.el (cus-test-libs): Use equal instead of =.
4
12002-10-14 Markus Rost <rost@math.ohio-state.edu> 52002-10-14 Markus Rost <rost@math.ohio-state.edu>
2 6
3 * cus-test.el (cus-test-opts): Call cus-test-load-libs. 7 * cus-test.el (cus-test-opts): Call cus-test-load-libs.
diff --git a/admin/cus-test.el b/admin/cus-test.el
index f6062c9f7f0..8885b097873 100644
--- a/admin/cus-test.el
+++ b/admin/cus-test.el
@@ -109,6 +109,7 @@
109;; (ada-xref error 255) 109;; (ada-xref error 255)
110;; (ada-stmt error 255) 110;; (ada-stmt error 255)
111 111
112
112;;; Code: 113;;; Code:
113 114
114;;; Workarounds. For a smooth run and to avoid some side effects. 115;;; Workarounds. For a smooth run and to avoid some side effects.
@@ -458,7 +459,7 @@ in the emacs source directory."
458 (setq cmd (concat "src/emacs -batch -l " fn)) 459 (setq cmd (concat "src/emacs -batch -l " fn))
459 (setq status (call-process shell-file-name nil nil nil 460 (setq status (call-process shell-file-name nil nil nil
460 shell-command-switch cmd)) 461 shell-command-switch cmd))
461 (if (= status 0) 462 (if (equal status 0)
462 (message "%s" file) 463 (message "%s" file)
463 (error "%s" status)) 464 (error "%s" status))
464 (push file cus-test-libs-loaded)) 465 (push file cus-test-libs-loaded))