diff options
| author | Eli Zaretskii | 2013-04-16 20:49:18 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2013-04-16 20:49:18 +0300 |
| commit | db1ec5b6dfbd4acf342f730da85648de1276f006 (patch) | |
| tree | 6b6dd4ab24bd99791ba213cba9a53e8733a0646f | |
| parent | 19c443d277831d6d128d2e6a4e300258b8666bea (diff) | |
| download | emacs-db1ec5b6dfbd4acf342f730da85648de1276f006.tar.gz emacs-db1ec5b6dfbd4acf342f730da85648de1276f006.zip | |
Fixed loadup.el bug in finding the last build number on Unix.
| -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 75659d88ac4..7509689e2b7 100644 --- a/lisp/loadup.el +++ b/lisp/loadup.el | |||
| @@ -290,7 +290,7 @@ | |||
| 290 | (equal (nth 4 command-line-args) "dump")) | 290 | (equal (nth 4 command-line-args) "dump")) |
| 291 | (not (eq system-type 'ms-dos))) | 291 | (not (eq system-type 'ms-dos))) |
| 292 | (let* ((base (concat "emacs-" emacs-version ".")) | 292 | (let* ((base (concat "emacs-" emacs-version ".")) |
| 293 | (exelen (if (eq system-type 'windows-nt) -4 0)) | 293 | (exelen (if (eq system-type 'windows-nt) -4)) |
| 294 | (files (file-name-all-completions base default-directory)) | 294 | (files (file-name-all-completions base default-directory)) |
| 295 | (versions (mapcar (function | 295 | (versions (mapcar (function |
| 296 | (lambda (name) | 296 | (lambda (name) |