changeset 94134:29e80ebed169

(completion-table-with-terminator): Fix paren typo.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Thu, 17 Apr 2008 14:45:27 +0000
parents b41935af6fe9
children ad63f799c98d
files lisp/ChangeLog lisp/minibuffer.el
diffstat 2 files changed, 6 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Thu Apr 17 13:44:00 2008 +0000
+++ b/lisp/ChangeLog	Thu Apr 17 14:45:27 2008 +0000
@@ -1,3 +1,7 @@
+2008-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+	* minibuffer.el (completion-table-with-terminator): Fix paren typo.
+
 2008-04-17  Sam Steingold  <sds@gnu.org>
 
 	* pcvs-util.el (cvs-bury-buffer): Use quit-window instead of the
--- a/lisp/minibuffer.el	Thu Apr 17 13:44:00 2008 +0000
+++ b/lisp/minibuffer.el	Thu Apr 17 14:45:27 2008 +0000
@@ -138,8 +138,8 @@
         (if (and (stringp comp)
                  (eq (complete-with-action action table comp pred) t))
             (concat comp terminator)
-          comp))
-      comp)
+          comp)
+        comp))
      ;; completion-table-with-terminator is always used for
      ;; "sub-completions" so it's only called if the terminator is missing,
      ;; in which case `test-completion' should return nil.