diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2016-09-26 13:39:17 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2016-09-26 13:39:17 -0700 |
commit | a2513667af6c1cfc58e971b9a5476cd5edfaef1c (patch) | |
tree | 1e02fcc7d96e31aedb28ebb618b8e3f484be9c9a /lisp/minibuffer.el | |
parent | ffd6a03521de0a177db217e56cd6564ef60348fe (diff) | |
parent | 9fc9988d4d08028fb37c588f5e0483ac85b713d3 (diff) | |
download | emacs-a2513667af6c1cfc58e971b9a5476cd5edfaef1c.tar.gz emacs-a2513667af6c1cfc58e971b9a5476cd5edfaef1c.tar.bz2 emacs-a2513667af6c1cfc58e971b9a5476cd5edfaef1c.zip |
Merge from origin/emacs-25
9fc9988 Improve documentation of 'expand-abbrev' and wrapper hooks
c14a1d4 Minor copyedits of MS-Windows installation instructions
f281924 Fix display of cursor when 'blink-cursor-delay' has small value
# Conflicts:
# lisp/minibuffer.el
Diffstat (limited to 'lisp/minibuffer.el')
-rw-r--r-- | lisp/minibuffer.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/minibuffer.el b/lisp/minibuffer.el index 9190c1fb203..3d63ca8bd5f 100644 --- a/lisp/minibuffer.el +++ b/lisp/minibuffer.el @@ -1925,7 +1925,8 @@ variables.") (exit-minibuffer)) (defvar completion-in-region-functions nil - "Wrapper hook around `completion--in-region'.") + "Wrapper hook around `completion--in-region'. +\(See `with-wrapper-hook' for details about wrapper hooks.)") (make-obsolete-variable 'completion-in-region-functions 'completion-in-region-function "24.4") @@ -1969,7 +1970,8 @@ if there was no valid completion, else t." (defun completion--in-region (start end collection &optional predicate) "Default function to use for `completion-in-region-function'. Its arguments and return value are as specified for `completion-in-region'. -This respects the wrapper hook `completion-in-region-functions'." +Also respects the obsolete wrapper hook `completion-in-region-functions'. +\(See `with-wrapper-hook' for details about wrapper hooks.)" (subr--with-wrapper-hook-no-warnings ;; FIXME: Maybe we should use this hook to provide a "display ;; completions" operation as well. |