diff options
| -rw-r--r-- | etc/NEWS | 5 | ||||
| -rw-r--r-- | lisp/info.el | 8 |
2 files changed, 7 insertions, 6 deletions
| @@ -253,6 +253,11 @@ details. | |||
| 253 | *** New setf-able function to access and set image parameters is | 253 | *** New setf-able function to access and set image parameters is |
| 254 | provided: 'image-property'. | 254 | provided: 'image-property'. |
| 255 | 255 | ||
| 256 | --- | ||
| 257 | ** The default 'Info-default-directory-list' no longer checks some obsolete | ||
| 258 | directory suffixes (gnu, gnu/lib, gnu/lib/emacs, emacs, lib, lib/emacs) | ||
| 259 | when searching for info directories. | ||
| 260 | |||
| 256 | +++ | 261 | +++ |
| 257 | ** The commands that add ChangeLog entries now prefer a VCS root directory | 262 | ** The commands that add ChangeLog entries now prefer a VCS root directory |
| 258 | for the ChangeLog file, if none already exists. Customize | 263 | for the ChangeLog file, if none already exists. Customize |
diff --git a/lisp/info.el b/lisp/info.el index ae46fba25b9..5a1cec11dd2 100644 --- a/lisp/info.el +++ b/lisp/info.el | |||
| @@ -192,12 +192,8 @@ A header-line does not scroll with the rest of the buffer." | |||
| 192 | (prune-directory-list '("/usr/local/" "/usr/" "/opt/" "/"))) | 192 | (prune-directory-list '("/usr/local/" "/usr/" "/opt/" "/"))) |
| 193 | (suffixes | 193 | (suffixes |
| 194 | ;; Subdirectories in each directory tree that may contain info | 194 | ;; Subdirectories in each directory tree that may contain info |
| 195 | ;; directories. Most of these are rather outdated. | 195 | ;; directories. |
| 196 | ;; It ought to be fine to stop checking the "emacs" ones now, | 196 | '("share/" "")) |
| 197 | ;; since this is Emacs and we have not installed info files | ||
| 198 | ;; into such directories for a looong time... | ||
| 199 | '("share/" "" "gnu/" "gnu/lib/" "gnu/lib/emacs/" | ||
| 200 | "emacs/" "lib/" "lib/emacs/")) | ||
| 201 | (standard-info-dirs | 197 | (standard-info-dirs |
| 202 | (apply #'nconc | 198 | (apply #'nconc |
| 203 | (mapcar (lambda (pfx) | 199 | (mapcar (lambda (pfx) |