diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-10-30 19:28:49 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-10-30 19:28:49 +0000 |
commit | 0c39a40329bacd385b59b897bf208aadfc8fb428 (patch) | |
tree | ba468f0b6f3923f0e01060d86a5e041578a810c8 /lisp/loadup.el | |
parent | 9993b5610cd7c82669de43fbad0bc3d022450b77 (diff) | |
download | emacs-0c39a40329bacd385b59b897bf208aadfc8fb428.tar.gz |
(finding existing executable versions): Add a period to the end of BASE.
Diffstat (limited to 'lisp/loadup.el')
-rw-r--r-- | lisp/loadup.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/loadup.el b/lisp/loadup.el index 9e9f201d24b..e6b790691a0 100644 --- a/lisp/loadup.el +++ b/lisp/loadup.el @@ -150,7 +150,7 @@ (if (and (or (equal (nth 3 command-line-args) "dump") (equal (nth 4 command-line-args) "dump")) (not (eq system-type 'ms-dos))) - (let* ((base (concat "emacs-" emacs-version)) + (let* ((base (concat "emacs-" emacs-version ".")) (files (file-name-all-completions base default-directory)) (versions (mapcar (function (lambda (name) (string-to-int (substring name (1+ (length base)))))) |