(Info-complete-menu-item): Add missing parenthesis.

This commit is contained in:
Juanma Barranquero 2008-04-22 15:49:43 +00:00
parent 494858be8a
commit d585001909
2 changed files with 10 additions and 6 deletions

View file

@ -1,3 +1,7 @@
2008-04-22 Juanma Barranquero <lekktu@gmail.com>
* info.el (Info-complete-menu-item): Add missing parenthesis.
2008-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
* info.el (Info-complete-menu-item): Save point.

View file

@ -2307,12 +2307,12 @@ Because of ambiguities, this should be concatenated with something like
(Info-goto-node orignode))
;; Update the cache.
(set (make-local-variable 'Info-complete-cache)
(list Info-current-file Info-current-node
Info-complete-next-re string completions
Info-complete-nodes)))
(if action
(all-completions string completions predicate)
(try-completion string completions predicate)))))))
(list Info-current-file Info-current-node
Info-complete-next-re string completions
Info-complete-nodes)))
(if action
(all-completions string completions predicate)
(try-completion string completions predicate))))))))
(defun Info-menu (menu-item &optional fork)