# HG changeset patch # User Stefan Monnier # Date 1132273066 0 # Node ID 775cde85fe0a71b1ef2b374b1dbfbece9f93fd21 # Parent e7a2c5c64fffb49638150e1edd7b3ee9f3147bb1 (completion-setup-function): Fix last change. diff -r e7a2c5c64fff -r 775cde85fe0a lisp/ChangeLog --- a/lisp/ChangeLog Thu Nov 17 23:02:34 2005 +0000 +++ b/lisp/ChangeLog Fri Nov 18 00:17:46 2005 +0000 @@ -1,3 +1,7 @@ +2005-11-17 Stefan Monnier + + * simple.el (completion-setup-function): Fix last change. + 2005-11-17 John Paul Wallington * ibuf-ext.el (ibuffer-interactive-filter-by-mode): @@ -82,8 +86,8 @@ 2005-11-16 Luc Teirlinck * rfn-eshadow.el (file-name-shadow-properties) - (file-name-shadow-tty-properties, file-name-shadow-mode): Remove - autoloads, because the file is now preloaded. + (file-name-shadow-tty-properties, file-name-shadow-mode): + Remove autoloads, because the file is now preloaded. 2005-11-16 Stefan Monnier diff -r e7a2c5c64fff -r 775cde85fe0a lisp/simple.el --- a/lisp/simple.el Thu Nov 17 23:02:34 2005 +0000 +++ b/lisp/simple.el Fri Nov 18 00:17:46 2005 +0000 @@ -4919,7 +4919,7 @@ ;; when completing file names. It's not even clear what ;; is TRT. 0 - (- common-string-length (- (point) (point-max)))))) + (- common-string-length (- (point-max) (point)))))) (with-current-buffer standard-output (completion-list-mode) (set (make-local-variable 'completion-reference-buffer) mainbuf)