1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-23 10:34:07 +00:00

(completion-table-dynamic): Doc fix.

This commit is contained in:
Juanma Barranquero 2008-05-30 19:50:26 +00:00
parent 47dd5958df
commit d9aa6b3358
2 changed files with 9 additions and 6 deletions

View File

@ -1,3 +1,7 @@
2008-05-30 Juanma Barranquero <lekktu@gmail.com>
* minibuffer.el (completion-table-dynamic): Doc fix.
2008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
* vc-cvs.el (vc-cvs-state-heuristic, vc-cvs-parse-status): Try and
@ -42,11 +46,10 @@
2008-05-29 Kenichi Handa <handa@m17n.org>
* international/mule-conf.el (utf-8-sig, utf-8-auto): New coding
systems.
* international/mule-conf.el (utf-8-sig, utf-8-auto):
New coding systems.
* international/mule.el (define-coding-system): Accept :bom for
utf-8.
* international/mule.el (define-coding-system): Accept :bom for utf-8.
2008-05-29 Espen Wiborg <espen.wiborg@telio.no> (tiny change)

View File

@ -131,7 +131,7 @@ the value of its argument. If completion is performed in the minibuffer,
FUN will be called in the buffer from which the minibuffer was entered.
The result of the `dynamic-completion-table' form is a function
that can be used as the ALIST argument to `try-completion' and
that can be used as the COLLECTION argument to `try-completion' and
`all-completions'. See Info node `(elisp)Programmed Completion'."
(lexical-let ((fun fun))
(lambda (string pred action)
@ -978,7 +978,7 @@ specified by COMMON-SUBSTRING."
(let ((start (length (file-name-directory string)))
(end (string-match "/" (cdr action))))
(list* 'boundaries start end)))
(t
(let* ((dir (if (stringp pred)
;; It used to be that `pred' was abused to pass `dir'