mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-30 04:10:54 -08:00
(cus-test-libs): Use equal instead of =.
This commit is contained in:
parent
a80d729082
commit
e170d16cb0
2 changed files with 6 additions and 1 deletions
|
|
@ -1,3 +1,7 @@
|
|||
2002-10-15 Markus Rost <rost@math.ohio-state.edu>
|
||||
|
||||
* cus-test.el (cus-test-libs): Use equal instead of =.
|
||||
|
||||
2002-10-14 Markus Rost <rost@math.ohio-state.edu>
|
||||
|
||||
* cus-test.el (cus-test-opts): Call cus-test-load-libs.
|
||||
|
|
|
|||
|
|
@ -109,6 +109,7 @@
|
|||
;; (ada-xref error 255)
|
||||
;; (ada-stmt error 255)
|
||||
|
||||
|
||||
;;; Code:
|
||||
|
||||
;;; Workarounds. For a smooth run and to avoid some side effects.
|
||||
|
|
@ -458,7 +459,7 @@ in the emacs source directory."
|
|||
(setq cmd (concat "src/emacs -batch -l " fn))
|
||||
(setq status (call-process shell-file-name nil nil nil
|
||||
shell-command-switch cmd))
|
||||
(if (= status 0)
|
||||
(if (equal status 0)
|
||||
(message "%s" file)
|
||||
(error "%s" status))
|
||||
(push file cus-test-libs-loaded))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue