diff options
| author | Richard M. Stallman | 1996-01-05 02:08:29 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-01-05 02:08:29 +0000 |
| commit | ce5aaa0c3d760f8b8f6181ecc49c77ff03c8cad5 (patch) | |
| tree | 87ea56901f028dfab0b59e12a8e19197f3f3dd9e | |
| parent | 15294654d6afed436213a0a86e0faa92b6bf6724 (diff) | |
| download | emacs-ce5aaa0c3d760f8b8f6181ecc49c77ff03c8cad5.tar.gz emacs-ce5aaa0c3d760f8b8f6181ecc49c77ff03c8cad5.zip | |
(batch-update-autoloads): Use error-message-string.
| -rw-r--r-- | lisp/emacs-lisp/autoload.el | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/autoload.el b/lisp/emacs-lisp/autoload.el index 0a38a1539fa..0f77b925cd1 100644 --- a/lisp/emacs-lisp/autoload.el +++ b/lisp/emacs-lisp/autoload.el | |||
| @@ -412,9 +412,7 @@ For example, invoke `emacs -batch -f batch-update-autoloads *.el'." | |||
| 412 | (princ ">>Error processing ") | 412 | (princ ">>Error processing ") |
| 413 | (princ file) | 413 | (princ file) |
| 414 | (princ ": ") | 414 | (princ ": ") |
| 415 | (if (fboundp 'display-error) | 415 | (princ (error-message-string lossage)) |
| 416 | (display-error lossage nil) | ||
| 417 | (prin1 lossage)) | ||
| 418 | (princ "\n") | 416 | (princ "\n") |
| 419 | (setq lost t))))))) | 417 | (setq lost t))))))) |
| 420 | (while args | 418 | (while args |