diff options
| -rw-r--r-- | lisp/startup.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/startup.el b/lisp/startup.el index 1d525e6dfd5..22f32d2b149 100644 --- a/lisp/startup.el +++ b/lisp/startup.el | |||
| @@ -954,11 +954,11 @@ or `CVS', and any subdirectory that contains a file named `.nosearch'." | |||
| 954 | (with-current-buffer (window-buffer) | 954 | (with-current-buffer (window-buffer) |
| 955 | (deactivate-mark))) | 955 | (deactivate-mark))) |
| 956 | 956 | ||
| 957 | ;; If the user has a file of abbrevs, read it. | 957 | ;; If the user has a file of abbrevs, read it. |
| 958 | ;; FIXME: after the 22.0 release this should be changed so | 958 | ;; FIXME: after the 22.0 release this should be changed so |
| 959 | ;; that it does not read the abbrev file when -batch is used | 959 | ;; that it does not read the abbrev file when -batch is used |
| 960 | ;; on the command line. | 960 | ;; on the command line. |
| 961 | (when (and (file-exists-p abbrev-file-name) | 961 | (when (and (file-exists-p abbrev-file-name) |
| 962 | (file-readable-p abbrev-file-name)) | 962 | (file-readable-p abbrev-file-name)) |
| 963 | (quietly-read-abbrev-file abbrev-file-name)) | 963 | (quietly-read-abbrev-file abbrev-file-name)) |
| 964 | 964 | ||