mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-02-05 20:43:08 +00:00
(Info-on-current-buffer): Default arg to "Top".
This commit is contained in:
parent
b02439c895
commit
07e91aa3ca
@ -1,10 +1,14 @@
|
||||
2001-09-26 Stefan Monnier <monnier@cs.yale.edu>
|
||||
|
||||
* info.el (Info-on-current-buffer): Default arg to "Top".
|
||||
|
||||
2001-09-25 Eli Barzilay <eli@barzilay.org>
|
||||
|
||||
* calculator.el (calculator-copy-displayer): New user-option.
|
||||
(calculator-displayer-prev, calculator-displayer-next): Renamed
|
||||
from calculator-displayed-{left,right}.
|
||||
(calculator, calculator-standard-displayer)
|
||||
(calculator-num-to-string, calculator-update-display)
|
||||
(calculator-displayer-prev, calculator-displayer-next):
|
||||
Renamed from calculator-displayed-{left,right}.
|
||||
(calculator, calculator-standard-displayer)
|
||||
(calculator-num-to-string, calculator-update-display)
|
||||
(calculator-copy, calculator-put-value): Bug and display fixes.
|
||||
|
||||
2001-09-24 Vinicius Jose Latorre <vinicius@cpqd.com.br>
|
||||
|
@ -508,12 +508,12 @@ it says do not attempt further (recursive) error recovery."
|
||||
(defun Info-on-current-buffer (&optional nodename)
|
||||
"Use the `Info-mode' to browse the current info buffer.
|
||||
If a prefix arg is provided, it queries for the NODENAME which
|
||||
else defaults to `Top'."
|
||||
else defaults to \"Top\"."
|
||||
(interactive
|
||||
(list (if current-prefix-arg
|
||||
(completing-read "Node name: " (Info-build-node-completions)
|
||||
nil t "Top")
|
||||
"Top")))
|
||||
nil t "Top"))))
|
||||
(unless nodename (setq nodename "Top"))
|
||||
(info-initialize)
|
||||
(Info-mode)
|
||||
(set (make-local-variable 'Info-current-file) t)
|
||||
|
Loading…
x
Reference in New Issue
Block a user