1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-11 02:10:35 -08:00

(completion-setup-function): Fix last change.

This commit is contained in:
Stefan Monnier 2005-11-18 00:17:46 +00:00
parent f5723ff54e
commit 39c7cde2a4
2 changed files with 7 additions and 3 deletions

View file

@ -1,3 +1,7 @@
2005-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
* simple.el (completion-setup-function): Fix last change.
2005-11-17 John Paul Wallington <jpw@pobox.com>
* ibuf-ext.el (ibuffer-interactive-filter-by-mode):
@ -82,8 +86,8 @@
2005-11-16 Luc Teirlinck <teirllm@auburn.edu>
* 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 <monnier@iro.umontreal.ca>

View file

@ -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)