* info.el (Info-menu): Handle string value of FORK arg.
Fixes: debbugs:10858
This commit is contained in:
parent
99fc91fecd
commit
69188b79df
2 changed files with 7 additions and 1 deletions
|
|
@ -1,3 +1,7 @@
|
|||
2012-03-21 Drew Adams <drew.adams@oracle.com>
|
||||
|
||||
* info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
|
||||
|
||||
2012-03-21 Anmol Khirbat <anmol@khirbat.net> (tiny change)
|
||||
|
||||
* ido.el (ido-set-current-directory, ido-read-internal)
|
||||
|
|
|
|||
|
|
@ -2594,7 +2594,9 @@ new buffer."
|
|||
(list item current-prefix-arg))))
|
||||
;; there is a problem here in that if several menu items have the same
|
||||
;; name you can only go to the node of the first with this command.
|
||||
(Info-goto-node (Info-extract-menu-item menu-item) (if fork menu-item)))
|
||||
(Info-goto-node (Info-extract-menu-item menu-item)
|
||||
(and fork
|
||||
(if (stringp fork) fork menu-item))))
|
||||
|
||||
(defun Info-extract-menu-item (menu-item)
|
||||
(setq menu-item (regexp-quote menu-item))
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue