From: Stefan Monnier Date: Thu, 17 Apr 2008 14:45:27 +0000 (+0000) Subject: (completion-table-with-terminator): Fix paren typo. X-Git-Tag: emacs-pretest-23.0.90~6237 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b531ac78130b7eb3edfc251ab5e89a0c601fe9ff;p=emacs.git (completion-table-with-terminator): Fix paren typo. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 09c00ee2c89..713da5a6d12 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2008-04-17 Stefan Monnier + + * minibuffer.el (completion-table-with-terminator): Fix paren typo. + 2008-04-17 Sam Steingold * pcvs-util.el (cvs-bury-buffer): Use quit-window instead of the diff --git a/lisp/minibuffer.el b/lisp/minibuffer.el index 2fec4238230..77a84e065e3 100644 --- a/lisp/minibuffer.el +++ b/lisp/minibuffer.el @@ -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.