# HG changeset patch # User Gerd Moellmann # Date 961080168 0 # Node ID 4eb75bd04c1bb158df85f5cf724451a7900fe46f # Parent 611062a8c71e72e9457d33c9a4bfd705acb57a81 (Info-set-mode-line): Show file name in mode line, use `*Info*' instead of `Info:'. diff -r 611062a8c71e -r 4eb75bd04c1b lisp/info.el --- a/lisp/info.el Thu Jun 15 14:42:19 2000 +0000 +++ b/lisp/info.el Thu Jun 15 14:42:48 2000 +0000 @@ -855,13 +855,11 @@ (defun Info-set-mode-line () (setq mode-line-buffer-identification (concat - " Info: (" - (if Info-current-file - (file-name-nondirectory (if (stringp Info-current-file) - Info-current-file - (or buffer-file-name ""))) - "") - ")" + " *Info* (" + (file-name-nondirectory (if (stringp Info-current-file) + Info-current-file + (or buffer-file-name ""))) + ") " (or Info-current-node "")))) ;; Go to an info node specified with a filename-and-nodename string