diff options
author | Markus Rost <rost@math.uni-bielefeld.de> | 2002-10-15 05:15:40 +0000 |
---|---|---|
committer | Markus Rost <rost@math.uni-bielefeld.de> | 2002-10-15 05:15:40 +0000 |
commit | e170d16cb0166ea636bb06f22e57f57bff66101f (patch) | |
tree | d2ae4240da3afa492725cddd059311640580802c /admin/cus-test.el | |
parent | a80d729082f3020956b6e260f8edd9f93c1a6551 (diff) | |
download | emacs-e170d16cb0166ea636bb06f22e57f57bff66101f.tar.gz |
(cus-test-libs): Use equal instead of =.
Diffstat (limited to 'admin/cus-test.el')
-rw-r--r-- | admin/cus-test.el | 3 |
1 files changed, 2 insertions, 1 deletions
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 @@ ;; (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)) |