diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2015-09-16 15:52:09 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2015-09-16 15:59:13 -0700 |
commit | dc436dd77f70dbc2e294a1fd2d69a332f1413fa5 (patch) | |
tree | 84ba3af906962c65120fa1194b6908127d1a86a4 /doc/misc/efaq.texi | |
parent | 8865587c55f251ac624e6730505de66d15b28562 (diff) | |
download | emacs-dc436dd77f70dbc2e294a1fd2d69a332f1413fa5.tar.gz emacs-dc436dd77f70dbc2e294a1fd2d69a332f1413fa5.tar.bz2 emacs-dc436dd77f70dbc2e294a1fd2d69a332f1413fa5.zip |
Minor backslash fixes in manuals and scripts
* Makefile.in (install-arch-indep):
* admin/charsets/compact.awk:
* admin/charsets/gb180302.awk (gb_to_index):
* admin/charsets/gb180304.awk (gb_to_index):
Avoid undefined behavior in Awk regular expression backslashes.
* doc/misc/efaq.texi (Matching parentheses):
Omit unnecessary backslashes.
* doc/misc/gnus-faq.texi (FAQ 5-8):
Avoid undefined behavior in suggested sed backslash usage.
Diffstat (limited to 'doc/misc/efaq.texi')
-rw-r--r-- | doc/misc/efaq.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/misc/efaq.texi b/doc/misc/efaq.texi index 3e9109d0924..6557f4d017b 100644 --- a/doc/misc/efaq.texi +++ b/doc/misc/efaq.texi @@ -2089,8 +2089,8 @@ parenthesis, it simply inserts a % like normal. (defun match-paren (arg) "Go to the matching paren if on a paren; otherwise insert %." (interactive "p") - (cond ((looking-at "\\s\(") (forward-list 1) (backward-char 1)) - ((looking-at "\\s\)") (forward-char 1) (backward-list 1)) + (cond ((looking-at "\\s(") (forward-list 1) (backward-char 1)) + ((looking-at "\\s)") (forward-char 1) (backward-list 1)) (t (self-insert-command (or arg 1))))) @end lisp |