diff options
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/files.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 694b34691de..7fa39b46727 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2015-04-05 Pete Williamson <petewil@chromium.org> (tiny-change) | ||
| 2 | |||
| 3 | Fix .emacs and .emacs.d/init file recursion problem for NaCl | ||
| 4 | * files.el (file-truename): Add NaCl to the exception list ms-dos uses. | ||
| 5 | |||
| 1 | 2015-04-04 Alan Mackenzie <acm@muc.de> | 6 | 2015-04-04 Alan Mackenzie <acm@muc.de> |
| 2 | 7 | ||
| 3 | * progmodes/cc-mode.el (c-font-lock-init): Revert 2015-02-01 change | 8 | * progmodes/cc-mode.el (c-font-lock-init): Revert 2015-02-01 change |
diff --git a/lisp/files.el b/lisp/files.el index 42b00accbd8..0fdf0048ac4 100644 --- a/lisp/files.el +++ b/lisp/files.el | |||
| @@ -1192,7 +1192,7 @@ containing it, until no links are left at any level. | |||
| 1192 | (setq dirfile (directory-file-name dir)) | 1192 | (setq dirfile (directory-file-name dir)) |
| 1193 | ;; If these are equal, we have the (or a) root directory. | 1193 | ;; If these are equal, we have the (or a) root directory. |
| 1194 | (or (string= dir dirfile) | 1194 | (or (string= dir dirfile) |
| 1195 | (and (memq system-type '(windows-nt ms-dos cygwin)) | 1195 | (and (memq system-type '(windows-nt ms-dos cygwin nacl)) |
| 1196 | (eq (compare-strings dir 0 nil dirfile 0 nil t) t)) | 1196 | (eq (compare-strings dir 0 nil dirfile 0 nil t) t)) |
| 1197 | ;; If this is the same dir we last got the truename for, | 1197 | ;; If this is the same dir we last got the truename for, |
| 1198 | ;; save time--don't recalculate. | 1198 | ;; save time--don't recalculate. |