aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2008-04-22 15:49:43 +0000
committerJuanma Barranquero2008-04-22 15:49:43 +0000
commitd58500190900fe2b9f2957e1cd6857e4aabbc86e (patch)
tree5ded505f4a1e86f945232058af03d8c82516e49c
parent494858be8a27ef0f6f06ac046edecb9677197843 (diff)
downloademacs-d58500190900fe2b9f2957e1cd6857e4aabbc86e.tar.gz
emacs-d58500190900fe2b9f2957e1cd6857e4aabbc86e.zip
(Info-complete-menu-item): Add missing parenthesis.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/info.el12
2 files changed, 10 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 983e8db713c..7466a38b713 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12008-04-22 Juanma Barranquero <lekktu@gmail.com>
2
3 * info.el (Info-complete-menu-item): Add missing parenthesis.
4
12008-04-22 Stefan Monnier <monnier@iro.umontreal.ca> 52008-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
2 6
3 * info.el (Info-complete-menu-item): Save point. 7 * 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
2307 (Info-goto-node orignode)) 2307 (Info-goto-node orignode))
2308 ;; Update the cache. 2308 ;; Update the cache.
2309 (set (make-local-variable 'Info-complete-cache) 2309 (set (make-local-variable 'Info-complete-cache)
2310 (list Info-current-file Info-current-node 2310 (list Info-current-file Info-current-node
2311 Info-complete-next-re string completions 2311 Info-complete-next-re string completions
2312 Info-complete-nodes))) 2312 Info-complete-nodes)))
2313 (if action 2313 (if action
2314 (all-completions string completions predicate) 2314 (all-completions string completions predicate)
2315 (try-completion string completions predicate))))))) 2315 (try-completion string completions predicate))))))))
2316 2316
2317 2317
2318(defun Info-menu (menu-item &optional fork) 2318(defun Info-menu (menu-item &optional fork)