aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/info.el3
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 7d7a3b8c175..7297a2bc3f7 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12004-10-24 Luc Teirlinck <teirllm@auburn.edu>
2
3 * info.el (Info-find-emacs-command-nodes): Adapt to Texinfo-4.7
4 style indexes.
5
12004-10-24 Kai Grossjohann <kai.grossjohann@gmx.net> 62004-10-24 Kai Grossjohann <kai.grossjohann@gmx.net>
2 7
3 * simple.el (process-file): Accept nil for INFILE. Reported by 8 * simple.el (process-file): Accept nil for INFILE. Reported by
diff --git a/lisp/info.el b/lisp/info.el
index 17905c6d738..4fc7b5c9cf7 100644
--- a/lisp/info.el
+++ b/lisp/info.el
@@ -3248,7 +3248,8 @@ The locations are of the format used in `Info-history', i.e.
3248\(FILENAME NODENAME BUFFERPOS\)." 3248\(FILENAME NODENAME BUFFERPOS\)."
3249 (let ((where '()) 3249 (let ((where '())
3250 (cmd-desc (concat "^\\* +" (regexp-quote (symbol-name command)) 3250 (cmd-desc (concat "^\\* +" (regexp-quote (symbol-name command))
3251 "\\( <[0-9]+>\\)?:\\s *\\(.*\\)\\.$")) 3251 "\\( <[0-9]+>\\)?:\\s *\\(.*\\)\\."
3252 "\\([ \t]*(line[ \t]*[0-9]*)\\)?$"))
3252 (info-file "emacs")) ;default 3253 (info-file "emacs")) ;default
3253 ;; Determine which info file this command is documented in. 3254 ;; Determine which info file this command is documented in.
3254 (if (get command 'info-file) 3255 (if (get command 'info-file)