From 37248de29e569741231c34c85d640f8176e4da7f Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 5 Oct 1994 00:47:30 +0000 Subject: [PATCH] (texinfo-format-scan): Accept @^, @", @?, @!, @-. --- lisp/textmodes/texinfmt.el | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lisp/textmodes/texinfmt.el b/lisp/textmodes/texinfmt.el index 83cf620826d..e287212dc24 100644 --- a/lisp/textmodes/texinfmt.el +++ b/lisp/textmodes/texinfmt.el @@ -641,7 +641,7 @@ lower types.") ;; Scan for @-commands. (goto-char (point-min)) (while (search-forward "@" nil t) - (if (looking-at "[@{}'` *]") + (if (looking-at "[@{}^'` *\"?!-]") ;; Handle a few special @-followed-by-one-char commands. (if (= (following-char) ?*) (progn @@ -1581,6 +1581,10 @@ Used by @refill indenting command to avoid indenting within lists, etc.") ; must follow the command name with two commas in a row; otherwise, ; the Info formatting commands will misinterpret the end delimiter ; string as a start delimiter string. +; +; If you do a @definfoenclose{} on the name of a pre-defined macro (such +; as @emph{}, @strong{}, @tt{}, or @i{}) the enclosure definition will +; override the built-in definition. ; ; An enclosure command defined this way takes one argument in braces. ; -- 2.39.5