aboutsummaryrefslogtreecommitdiffstats
path: root/doc/misc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/misc')
-rw-r--r--doc/misc/efaq.texi4
-rw-r--r--doc/misc/gnus-faq.texi2
2 files changed, 3 insertions, 3 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.
2089(defun match-paren (arg) 2089(defun match-paren (arg)
2090 "Go to the matching paren if on a paren; otherwise insert %." 2090 "Go to the matching paren if on a paren; otherwise insert %."
2091 (interactive "p") 2091 (interactive "p")
2092 (cond ((looking-at "\\s\(") (forward-list 1) (backward-char 1)) 2092 (cond ((looking-at "\\s(") (forward-list 1) (backward-char 1))
2093 ((looking-at "\\s\)") (forward-char 1) (backward-list 1)) 2093 ((looking-at "\\s)") (forward-char 1) (backward-list 1))
2094 (t (self-insert-command (or arg 1))))) 2094 (t (self-insert-command (or arg 1)))))
2095@end lisp 2095@end lisp
2096 2096
diff --git a/doc/misc/gnus-faq.texi b/doc/misc/gnus-faq.texi
index 19c78bf56c6..26b9210b0dd 100644
--- a/doc/misc/gnus-faq.texi
+++ b/doc/misc/gnus-faq.texi
@@ -1528,7 +1528,7 @@ and create the actual X-face by saying
1528 1528
1529@example 1529@example
1530cat file.xbm | xbm2ikon | compface > file.face 1530cat file.xbm | xbm2ikon | compface > file.face
1531cat file.face | sed 's/\\/\\\\/g;s/\"/\\\"/g;' > file.face.quoted 1531cat file.face | sed 's/["\\]/\\&/g' > file.face.quoted
1532@end example 1532@end example
1533@noindent 1533@noindent
1534 1534