From: Richard M. Stallman Date: Wed, 5 Oct 1994 00:47:30 +0000 (+0000) Subject: (texinfo-format-scan): Accept @^, @", @?, @!, @-. X-Git-Tag: emacs-19.34~6510 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=37248de29e569741231c34c85d640f8176e4da7f;p=emacs.git (texinfo-format-scan): Accept @^, @", @?, @!, @-. --- 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. ;