1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-02 11:21:42 +00:00

*** empty log message ***

This commit is contained in:
Richard M. Stallman 2006-12-17 20:16:00 +00:00
parent b6ce54d67a
commit 294f1c392f
3 changed files with 18 additions and 1 deletions

View File

@ -4548,6 +4548,10 @@ autoloaded when not really necessary.
*** The function `make-auto-save-file-name' is now handled by file
name handlers. This will be exploited for remote files mainly.
+++
*** The function `file-name-completion' accepts an optional argument
PREDICATE, and rejects completion candidates that don't satisfy PREDICATE.
** Input changes:
+++
@ -4557,7 +4561,7 @@ maximum time to wait for input, in seconds. If no input arrives after
this time elapses, the functions stop waiting and return nil.
+++
*** An interactive specification can now use the code letter 'U' to get
*** An interactive specification can now use the code letter `U' to get
the up-event that was discarded in case the last key sequence read for a
previous `k' or `K' argument was a down-event; otherwise nil is used.

View File

@ -1,3 +1,8 @@
2006-12-17 Richard Stallman <rms@gnu.org>
* files.texi (File Name Completion): Document PREDICATE arg
to file-name-completion.
2006-12-16 Eli Zaretskii <eliz@gnu.org>
* internals.texi (Building Emacs, Writing Emacs Primitives): Add

View File

@ -1,3 +1,11 @@
2006-12-17 Richard Stallman <rms@gnu.org>
* fileio.c (Fread_file_name_internal): Pass Vread_file_name_predicate
to Ffile_name_completion.
* dired.c (file_name_completion): New arg PREDICATE. Some cleanup.
(file_name_completion): New arg PREDICATE.
2006-12-17 Juanma Barranquero <lekktu@gmail.com>
* buffer.c (Fkill_buffer): Doc fix.