# HG changeset patch # User Richard M. Stallman # Date 781318050 0 # Node ID 43cf4ed3f5f0493e1215fc2235c2469e61fb8a26 # Parent ee98668926833a2e4edf059fb16ea53071bcb86e (texinfo-format-scan): Accept @^, @", @?, @!, @-. diff -r ee9866892683 -r 43cf4ed3f5f0 lisp/textmodes/texinfmt.el --- a/lisp/textmodes/texinfmt.el Tue Oct 04 22:57:42 1994 +0000 +++ b/lisp/textmodes/texinfmt.el Wed Oct 05 00:47:30 1994 +0000 @@ -641,7 +641,7 @@ ;; 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 @@ ; 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. ;