diff options
| author | Juanma Barranquero | 2005-07-04 03:45:56 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2005-07-04 03:45:56 +0000 |
| commit | dbc868a1040225e83336bd84f114e0e298652e7c (patch) | |
| tree | 2f3b23ac8f5153232bba07c5eff9d512d2dfb0c4 | |
| parent | d1218e3e1ff9d892c0c41a91529d7b33c84ffb77 (diff) | |
| download | emacs-dbc868a1040225e83336bd84f114e0e298652e7c.tar.gz emacs-dbc868a1040225e83336bd84f114e0e298652e7c.zip | |
(texinfo): Finish `defgroup' description with period.
(texinfo-insert-quote): "?\ " -> "?\s".
| -rw-r--r-- | lisp/textmodes/texinfo.el | 4 |
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 @@ | |||
| 44 | (eval-when-compile (require 'tex-mode) (require 'cl)) | 44 | (eval-when-compile (require 'tex-mode) (require 'cl)) |
| 45 | 45 | ||
| 46 | (defgroup texinfo nil | 46 | (defgroup texinfo nil |
| 47 | "Texinfo Mode" | 47 | "Texinfo Mode." |
| 48 | :group 'docs) | 48 | :group 'docs) |
| 49 | 49 | ||
| 50 | ;;;###autoload | 50 | ;;;###autoload |
| @@ -701,7 +701,7 @@ With prefix argument or inside @code or @example, inserts a plain \"." | |||
| 701 | (setq in-env t))))) | 701 | (setq in-env t))))) |
| 702 | (self-insert-command (prefix-numeric-value arg)) | 702 | (self-insert-command (prefix-numeric-value arg)) |
| 703 | (insert | 703 | (insert |
| 704 | (if (memq (char-syntax (preceding-char)) '(?\( ?> ?\ )) | 704 | (if (memq (char-syntax (preceding-char)) '(?\( ?> ?\s)) |
| 705 | texinfo-open-quote | 705 | texinfo-open-quote |
| 706 | texinfo-close-quote))))) | 706 | texinfo-close-quote))))) |
| 707 | 707 | ||