aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2005-11-18 00:17:46 +0000
committerStefan Monnier2005-11-18 00:17:46 +0000
commit39c7cde2a4db6801eb22d4e2e7d39b5ce1084649 (patch)
treeb7964122a55ff27f0e28577c309e154152b87426
parentf5723ff54e2bc69dfa025f65d042ee2c485500e3 (diff)
downloademacs-39c7cde2a4db6801eb22d4e2e7d39b5ce1084649.tar.gz
emacs-39c7cde2a4db6801eb22d4e2e7d39b5ce1084649.zip
(completion-setup-function): Fix last change.
-rw-r--r--lisp/ChangeLog8
-rw-r--r--lisp/simple.el2
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 @@
12005-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * simple.el (completion-setup-function): Fix last change.
4
12005-11-17 John Paul Wallington <jpw@pobox.com> 52005-11-17 John Paul Wallington <jpw@pobox.com>
2 6
3 * ibuf-ext.el (ibuffer-interactive-filter-by-mode): 7 * ibuf-ext.el (ibuffer-interactive-filter-by-mode):
@@ -82,8 +86,8 @@
822005-11-16 Luc Teirlinck <teirllm@auburn.edu> 862005-11-16 Luc Teirlinck <teirllm@auburn.edu>
83 87
84 * rfn-eshadow.el (file-name-shadow-properties) 88 * rfn-eshadow.el (file-name-shadow-properties)
85 (file-name-shadow-tty-properties, file-name-shadow-mode): Remove 89 (file-name-shadow-tty-properties, file-name-shadow-mode):
86 autoloads, because the file is now preloaded. 90 Remove autoloads, because the file is now preloaded.
87 91
882005-11-16 Stefan Monnier <monnier@iro.umontreal.ca> 922005-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
89 93
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.)")
4919 ;; when completing file names. It's not even clear what 4919 ;; when completing file names. It's not even clear what
4920 ;; is TRT. 4920 ;; is TRT.
4921 0 4921 0
4922 (- common-string-length (- (point) (point-max)))))) 4922 (- common-string-length (- (point-max) (point))))))
4923 (with-current-buffer standard-output 4923 (with-current-buffer standard-output
4924 (completion-list-mode) 4924 (completion-list-mode)
4925 (set (make-local-variable 'completion-reference-buffer) mainbuf) 4925 (set (make-local-variable 'completion-reference-buffer) mainbuf)