diff options
author | Vibhav Pant <vibhavp@gmail.com> | 2017-02-05 23:08:53 +0530 |
---|---|---|
committer | Vibhav Pant <vibhavp@gmail.com> | 2017-02-05 23:08:53 +0530 |
commit | ad70ca1dad26da79f0a95cc0ec687902ef20fa9b (patch) | |
tree | 732e8e9ace1fdd7aaf982f0fa5ac6c8e4eb5f7c7 /doc/lispintro/emacs-lisp-intro.texi | |
parent | 2db473bda8be72cf3c1e4694d70ce48f60492b0e (diff) | |
parent | 148100d98319499f0ac6f57b8be08cbd14884a5c (diff) | |
download | emacs-ad70ca1dad26da79f0a95cc0ec687902ef20fa9b.tar.gz |
Merge remote-tracking branch 'origin/master' into feature/byte-switch
Diffstat (limited to 'doc/lispintro/emacs-lisp-intro.texi')
-rw-r--r-- | doc/lispintro/emacs-lisp-intro.texi | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi index 830c072cf5e..36d767737df 100644 --- a/doc/lispintro/emacs-lisp-intro.texi +++ b/doc/lispintro/emacs-lisp-intro.texi @@ -17151,9 +17151,11 @@ Here is another keybinding, with a comment: @findex occur The @code{occur} command shows all the lines in the current buffer -that contain a match for a regular expression. Matching lines are -shown in a buffer called @file{*Occur*}. That buffer serves as a menu -to jump to occurrences. +that contain a match for a regular expression. When the region is +active, @code{occur} restricts matches to such region. Otherwise it +uses the entire buffer. +Matching lines are shown in a buffer called @file{*Occur*}. +That buffer serves as a menu to jump to occurrences. @findex global-unset-key @cindex Unbinding key |