Mercurial > emacs
changeset 9344:43cf4ed3f5f0
(texinfo-format-scan): Accept @^, @", @?, @!, @-.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 05 Oct 1994 00:47:30 +0000 |
parents | ee9866892683 |
children | 832197fec54d |
files | lisp/textmodes/texinfmt.el |
diffstat | 1 files changed, 5 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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. ;