mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-22 12:57:34 +00:00
(minibuffer-default-add-function): Fix docstring to
use clear text "default values" instead of obscure references to the dynamic variable `minibuffer-default'.
This commit is contained in:
parent
a2c72e6cb9
commit
0eb5f40f85
2 changed files with 30 additions and 2 deletions
|
|
@ -1,3 +1,31 @@
|
|||
2008-11-17 Juri Linkov <juri@jurta.org>
|
||||
|
||||
* isearch.el (isearch-filter-predicate): Rename from
|
||||
`isearch-success-function'. Rename default value from
|
||||
`isearch-success-function-default' to
|
||||
`isearch-filter-invisible'. Doc fix.
|
||||
(isearch-filter-invisible): Rename from
|
||||
`isearch-success-function-default'. Doc fix.
|
||||
(isearch-search, isearch-lazy-highlight-search): Rename
|
||||
`isearch-success-function' to `isearch-filter-predicate'.
|
||||
|
||||
* dired-aux.el (dired-isearch-filter-predicate-orig): Rename from
|
||||
`dired-isearch-orig-success-function'.
|
||||
(dired-isearch-filenames-toggle, dired-isearch-filenames-setup)
|
||||
(dired-isearch-filenames-end): Rename `isearch-success-function' to
|
||||
`isearch-filter-predicate'. Doc fix.
|
||||
(dired-isearch-filter-filenames): Rename from
|
||||
`dired-isearch-success-function'.
|
||||
|
||||
* info.el (Info-search, Info-mode): Rename
|
||||
`isearch-success-function' to `isearch-filter-predicate'.
|
||||
(Info-isearch-filter-predicate): Rename from
|
||||
`Info-search-success-function'.
|
||||
|
||||
* simple.el (minibuffer-default-add-function): Fix docstring to
|
||||
use clear text "default values" instead of obscure references to
|
||||
the dynamic variable `minibuffer-default'.
|
||||
|
||||
2008-11-16 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* term/ns-win.el (ns-extended-platform-support-mode):
|
||||
|
|
|
|||
|
|
@ -1323,8 +1323,8 @@ makes the search case-sensitive."
|
|||
(defvar minibuffer-temporary-goal-position nil)
|
||||
|
||||
(defvar minibuffer-default-add-function 'minibuffer-default-add-completions
|
||||
"Function run by `goto-history-element' before consuming `minibuffer-default'.
|
||||
This is useful to dynamically add more elements to the list `minibuffer-default'
|
||||
"Function run by `goto-history-element' before consuming default values.
|
||||
This is useful to dynamically add more elements to the list of default values
|
||||
when `goto-history-element' reaches the end of this list.
|
||||
Before calling this function `goto-history-element' sets the variable
|
||||
`minibuffer-default-add-done' to t, so it will call this function only
|
||||
|
|
|
|||
Loading…
Reference in a new issue