diff lisp/minibuffer.el @ 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 14fafab62797
children 40901fec25aa
line wrap: on
line diff
--- 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.