changeset 64061:a429e89a3bdf

(texinfo): Finish `defgroup' description with period. (texinfo-insert-quote): "?\ " -> "?\s".
author Juanma Barranquero <lekktu@gmail.com>
date Mon, 04 Jul 2005 03:45:56 +0000
parents fa1dc4af6eee
children 50af47b41b9c
files lisp/textmodes/texinfo.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/textmodes/texinfo.el	Mon Jul 04 03:44:33 2005 +0000
+++ b/lisp/textmodes/texinfo.el	Mon Jul 04 03:45:56 2005 +0000
@@ -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 @@
 		    (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)))))