diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2008-04-13 22:12:02 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2008-04-13 22:12:02 +0000 |
commit | e2947429e7587b1495b08c95b168a59a4704f157 (patch) | |
tree | aa23aa236c32905ce14c1ba491b105584e614d64 /etc | |
parent | d41080ca3f4df045073ee531a6ce8267c1cf75f9 (diff) | |
download | emacs-e2947429e7587b1495b08c95b168a59a4704f157.tar.gz |
* minibuffer.el (completion-all-completion-with-base-size): New var.
(completion--some): New function.
(completion-table-with-context, completion--file-name-table):
Return the base-size if requested.
(completion-table-in-turn): Generalize to multiple arguments.
(complete-in-turn): Compatibility alias.
(completion-styles-alist): New var.
(completion-styles): New customization.
(minibuffer-try-completion, minibuffer-all-completions):
New functions.
(minibuffer--do-completion, minibuffer-complete-and-exit)
(minibuffer-try-word-completion): Use them.
(display-completion-list, minibuffer-completion-help): Use them.
Handle all-completions's new base-size info to set completion-base-size.
* info.el (Info-read-node-name-1): Use completion-table-with-context,
completion-table-with-terminator and complete-with-action.
Remove the now obsolete completion-base-size-function property.
* simple.el (completion-list-mode-map): Move init into declaration.
(completion-list-mode): Use define-derived-mode.
(completion-setup-function): Use any completion-base-size that may
have been set before. Remove handling of completion-base-size-function.
* loadup.el: Move abbrev.el up earlier.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/NEWS | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -732,6 +732,13 @@ functions and variables (formerly used for Tamil script). * Lisp Changes in Emacs 23.1 +** `all-completions' may now return the base size in the last cdr. +Since this means the returned list is not properly nil-terminated, this +is an incompatible change and is thus enabled by the new variable +completion-all-completions-with-base-size. + +** New function `apply-partially' for curried application. + ** `fill-forward-paragraph-function' specifies which function the filling code should use to find paragraph boundaries. |