# HG changeset patch # User Stefan Monnier # Date 1208443527 0 # Node ID 29e80ebed1697b89619d2e80f3419fa9d9b38a3e # Parent b41935af6fe93ae3d95038832478f76866c68775 (completion-table-with-terminator): Fix paren typo. diff -r b41935af6fe9 -r 29e80ebed169 lisp/ChangeLog --- 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 + + * 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 -r b41935af6fe9 -r 29e80ebed169 lisp/minibuffer.el --- 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.