From: Juanma Barranquero Date: Tue, 22 Apr 2008 15:49:43 +0000 (+0000) Subject: (Info-complete-menu-item): Add missing parenthesis. X-Git-Tag: emacs-pretest-23.0.90~6132 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d58500190900fe2b9f2957e1cd6857e4aabbc86e;p=emacs.git (Info-complete-menu-item): Add missing parenthesis. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 983e8db713c..7466a38b713 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2008-04-22 Juanma Barranquero + + * info.el (Info-complete-menu-item): Add missing parenthesis. + 2008-04-22 Stefan Monnier * info.el (Info-complete-menu-item): Save point. diff --git a/lisp/info.el b/lisp/info.el index 259c999d6aa..ab83b45a2a7 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -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)