(completion-table-with-terminator): Fix paren typo.
authorStefan Monnier <monnier@iro.umontreal.ca>
Thu, 17 Apr 2008 14:45:27 +0000 (14:45 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 17 Apr 2008 14:45:27 +0000 (14:45 +0000)
lisp/ChangeLog
lisp/minibuffer.el

index 09c00ee..713da5a 100644 (file)
@@ -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
index 2fec423..77a84e0 100644 (file)
@@ -138,8 +138,8 @@ You should give VAR a non-nil `risky-local-variable' property."
         (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.