From 39c7cde2a4db6801eb22d4e2e7d39b5ce1084649 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Fri, 18 Nov 2005 00:17:46 +0000 Subject: [PATCH] (completion-setup-function): Fix last change. --- lisp/ChangeLog | 8 ++++++-- lisp/simple.el | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ebcb76d472f..4f748d561cc 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -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 --git a/lisp/simple.el b/lisp/simple.el index c358be1810b..2f07e1487cc 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -4919,7 +4919,7 @@ is the substring.)") ;; 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) -- 2.39.2