+2004-04-27 Jesper Harder <harder@ifa.au.dk>
+
+ * info.el (info-apropos): Make it an index node. Align node names
+ like makeinfo.
+
2004-04-27 Eli Zaretskii <eliz@gnu.org>
* net/browse-url.el (browse-url-netscape-sentinel)
(message "No matches found")
(with-current-buffer (get-buffer-create " *info-apropos*")
(erase-buffer)
- (insert "\n\1f\nFile: apropos, Node: Top, Up: (dir)\n")
+ (insert "\n\1f\nFile: apropos, Node: Index, Up: (dir)\n")
(insert "* Menu: \nNodes whose indices contain \"" string "\"\n\n")
(dolist (entry matches)
- (insert "* " (nth 1 entry) " [" (nth 0 entry)
- "]: (" (nth 0 entry) ")" (nth 2 entry) "."
- (if (nth 3 entry) (concat " (line " (nth 3 entry) ")") "")
- "\n")))
- (Info-find-node "apropos" "top")
+ (insert
+ (format "* %-38s (%s)%s.%s\n"
+ (concat (nth 1 entry) " [" (nth 0 entry) "]:")
+ (nth 0 entry)
+ (nth 2 entry)
+ (if (nth 3 entry)
+ (concat " (line " (nth 3 entry) ")")
+ "")))))
+ (Info-find-node "apropos" "Index")
(setq Info-complete-cache nil)))))
(defun Info-undefined ()