summaryrefslogtreecommitdiff
path: root/lisp/textmodes/texinfo.el
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2005-07-04 03:45:56 +0000
committerJuanma Barranquero <lekktu@gmail.com>2005-07-04 03:45:56 +0000
commitdbc868a1040225e83336bd84f114e0e298652e7c (patch)
tree2f3b23ac8f5153232bba07c5eff9d512d2dfb0c4 /lisp/textmodes/texinfo.el
parentd1218e3e1ff9d892c0c41a91529d7b33c84ffb77 (diff)
downloademacs-dbc868a1040225e83336bd84f114e0e298652e7c.tar.gz
(texinfo): Finish `defgroup' description with period.
(texinfo-insert-quote): "?\ " -> "?\s".
Diffstat (limited to 'lisp/textmodes/texinfo.el')
-rw-r--r--lisp/textmodes/texinfo.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/textmodes/texinfo.el b/lisp/textmodes/texinfo.el
index aac70dd1e23..048dfa99f31 100644
--- a/lisp/textmodes/texinfo.el
+++ b/lisp/textmodes/texinfo.el
@@ -44,7 +44,7 @@
(eval-when-compile (require 'tex-mode) (require 'cl))
(defgroup texinfo nil
- "Texinfo Mode"
+ "Texinfo Mode."
:group 'docs)
;;;###autoload
@@ -701,7 +701,7 @@ With prefix argument or inside @code or @example, inserts a plain \"."
(setq in-env t)))))
(self-insert-command (prefix-numeric-value arg))
(insert
- (if (memq (char-syntax (preceding-char)) '(?\( ?> ?\ ))
+ (if (memq (char-syntax (preceding-char)) '(?\( ?> ?\s))
texinfo-open-quote
texinfo-close-quote)))))