aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/info.el26
2 files changed, 29 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 8980cc4a970..a1a1b7b1a08 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12000-08-10 Eli Zaretskii <eliz@is.elta.co.il>
2
3 * info.el (Info-file-list-for-emacs): More elements for the
4 autotype, vip, ebrowse, cl, idlwave, reftex, widget, pcl-cvs,
5 and woman manuals.
6
12000-08-10 Miles Bader <miles@lsi.nec.co.jp> 72000-08-10 Miles Bader <miles@lsi.nec.co.jp>
2 8
3 * comint.el (comint-send-input): Make the newline boundary overlay 9 * comint.el (comint-send-input): Make the newline boundary overlay
diff --git a/lisp/info.el b/lisp/info.el
index 8641761ed9b..62482127f85 100644
--- a/lisp/info.el
+++ b/lisp/info.el
@@ -2173,7 +2173,13 @@ Allowed only if variable `Info-enable-edit' is non-nil."
2173 2173
2174(defvar Info-file-list-for-emacs 2174(defvar Info-file-list-for-emacs
2175 '("ediff" "forms" "gnus" ("mh" . "mh-e") "sc" "message" 2175 '("ediff" "forms" "gnus" ("mh" . "mh-e") "sc" "message"
2176 ("dired" . "dired-x") ("c" . "ccmode") "viper") 2176 ("dired" . "dired-x") ("c" . "ccmode") "viper" "vip"
2177 ("skeleton" . "autotype") ("auto-insert" . "autotype")
2178 ("copyright" . "autotype") ("executable" . "autotype")
2179 ("time-stamp" . "autotype") ("quickurl" . "autotype")
2180 ("tempo" . "autotype") ("hippie-expand" . "autotype")
2181 ("cvs" . "pcl-cvs")
2182 "ebrowse" "cl" "idlwave" "reftex" "widget" "woman")
2177 "List of Info files that describe Emacs commands. 2183 "List of Info files that describe Emacs commands.
2178An element can be a file name, or a list of the form (PREFIX . FILE) 2184An element can be a file name, or a list of the form (PREFIX . FILE)
2179where PREFIX is a name prefix and FILE is the file to look in. 2185where PREFIX is a name prefix and FILE is the file to look in.
@@ -2211,9 +2217,23 @@ The locations are of the format used in `Info-history', i.e.
2211 (condition-case nil 2217 (condition-case nil
2212 (Info-find-node info-file "Command Index") 2218 (Info-find-node info-file "Command Index")
2213 ;; Some manuals may not have a separate Command Index node, 2219 ;; Some manuals may not have a separate Command Index node,
2214 ;; so try just Index instead. 2220 ;; so try other variations as well.
2215 (error 2221 (error
2216 (Info-find-node info-file "Index"))) 2222 (condition-case nil
2223 (Info-find-node info-file "Function Index")
2224 (error
2225 (condition-case nil
2226 (Info-find-node info-file "Function and Variable Index")
2227 (error
2228 (condition-case nil
2229 (Info-find-node info-file "Concept Index")
2230 (error
2231 (condition-case nil
2232 (Info-find-node info-file "Index")
2233 (error
2234 (message "Info file `%s' seems to lack an Index"
2235 info-file)
2236 (sit-for 2)))))))))))
2217 ;; Take the index node off the Info history. 2237 ;; Take the index node off the Info history.
2218 (setq Info-history (cdr Info-history)) 2238 (setq Info-history (cdr Info-history))
2219 (goto-char (point-max)) 2239 (goto-char (point-max))