diff options
author | Eli Zaretskii <eliz@gnu.org> | 2018-03-07 21:51:59 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2018-03-07 21:51:59 +0200 |
commit | 317da2ace54e971c788d4718874df957d3d1c549 (patch) | |
tree | 683a9cad46c50529a5dc4133cfa42b0137c5c300 /doc/emacs/programs.texi | |
parent | 61c1f80f0544b3da784f97ec2368aec809c8524b (diff) | |
download | emacs-317da2ace54e971c788d4718874df957d3d1c549.tar.gz emacs-317da2ace54e971c788d4718874df957d3d1c549.tar.bz2 emacs-317da2ace54e971c788d4718874df957d3d1c549.zip |
Minor improvements in manuals
* doc/lispref/variables.texi (Local Variables): Make more clear
that local bindings of 'let' are in effect only within the body.
Suggested by Marcin Borkowski <mbork@mbork.pl>, see
http://lists.gnu.org/archive/html/emacs-devel/2018-03/msg00217.html
for the details.
* doc/emacs/programs.texi (Matching): Fix a typo. Reported by
Alex Branham <alex.branham@gmail.com> in emacs-manual-bugs@gnu.org.
Improve indexing.
Diffstat (limited to 'doc/emacs/programs.texi')
-rw-r--r-- | doc/emacs/programs.texi | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/doc/emacs/programs.texi b/doc/emacs/programs.texi index c34b55fc00e..d3d7028c149 100644 --- a/doc/emacs/programs.texi +++ b/doc/emacs/programs.texi @@ -849,11 +849,13 @@ options which control the operation of this mode include: @itemize @bullet @item -@code{show-paren-highlight-open-paren} controls whether to highlight +@vindex show-paren-highlight-openparen +@code{show-paren-highlight-openparen} controls whether to highlight an open paren when point stands just before it, and hence its position is marked by the cursor anyway. The default is non-@code{nil} (yes). @item +@vindex show-paren-style @code{show-paren-style} controls whether just the two parens, or also the space between them get highlighted. The valid options here are @code{parenthesis} (show the matching paren), @code{expression} @@ -862,10 +864,12 @@ the space between them get highlighted. The valid options here are expression otherwise). @item +@vindex show-paren-when-point-inside-paren @code{show-paren-when-point-inside-paren}, when non-@code{nil}, causes highlighting also when point is on the inside of a parenthesis. @item +@vindex show-paren-when-point-in-periphery @code{show-paren-when-point-in-periphery}, when non-@code{nil}, causes highlighting also when point is in whitespace at the beginning or end of a line, and there is a paren at, respectively, the first or last, |