]> git.eshelyaron.com Git - emacs.git/commitdiff
(texinfo): Finish `defgroup' description with period.
authorJuanma Barranquero <lekktu@gmail.com>
Mon, 4 Jul 2005 03:45:56 +0000 (03:45 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Mon, 4 Jul 2005 03:45:56 +0000 (03:45 +0000)
(texinfo-insert-quote): "?\ " -> "?\s".

lisp/textmodes/texinfo.el

index aac70dd1e237f473b79454c2c0ea08038e6f5a60..048dfa99f313d1e98d87780bfc7d3af86f06b873 100644 (file)
@@ -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)))))