1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

Fix buggy calls to `error' in the net/ directory.

This commit is contained in:
Deepak Goel 2007-12-06 18:22:45 +00:00
parent 26b4a51d1e
commit e9e4d61914
2 changed files with 3 additions and 1 deletions

View file

@ -1,5 +1,7 @@
2007-12-06 D. Goel <deego3@gmail.com>
* net/trampver.el (x): Ditto.
* mail/uce.el (uce-reply-to-uce): Ditto.
* mail/rmailout.el (rmail-output): Ditto.

View file

@ -38,7 +38,7 @@
;; Check for (X)Emacs version.
(let ((x (if (or (< emacs-major-version 21) (and (featurep 'xemacs) (< emacs-minor-version 4))) (format "Tramp 2.1.12-pre is not fit for %s" (when (string-match "^.*$" (emacs-version)) (match-string 0 (emacs-version)))) "ok")))
(unless (string-match "\\`ok\\'" x) (error x)))
(unless (string-match "\\`ok\\'" x) (error "%s" x)))
(provide 'trampver)