# HG changeset patch # User Juanma Barranquero # Date 1120448756 0 # Node ID a429e89a3bdf494cd3d8631ac1dd1e908a3ace8c # Parent fa1dc4af6eeea20368a9f7fbda692444aa90900e (texinfo): Finish `defgroup' description with period. (texinfo-insert-quote): "?\ " -> "?\s". diff -r fa1dc4af6eee -r a429e89a3bdf lisp/textmodes/texinfo.el --- 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)))))