diff options
| author | Karl Heuer | 1999-08-16 03:17:09 +0000 |
|---|---|---|
| committer | Karl Heuer | 1999-08-16 03:17:09 +0000 |
| commit | 7220ca11af9b20616e893e8d16dd6f77ac488bee (patch) | |
| tree | 63b64b9b9c31520916330b0966f3802605b35338 | |
| parent | fe44bc6d35140096916c8524613b6fb6f711d0ce (diff) | |
| download | emacs-7220ca11af9b20616e893e8d16dd6f77ac488bee.tar.gz emacs-7220ca11af9b20616e893e8d16dd6f77ac488bee.zip | |
Handle @ifnottex.
| -rw-r--r-- | lisp/textmodes/texinfmt.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/textmodes/texinfmt.el b/lisp/textmodes/texinfmt.el index aeaa835d6db..674f0433366 100644 --- a/lisp/textmodes/texinfmt.el +++ b/lisp/textmodes/texinfmt.el | |||
| @@ -2111,7 +2111,7 @@ This command is executed when texinfmt sees @item inside @multitable." | |||
| 2111 | (setq fill-column existing-fill-column))) | 2111 | (setq fill-column existing-fill-column))) |
| 2112 | 2112 | ||
| 2113 | 2113 | ||
| 2114 | ;;; @ifinfo, @iftex, @tex, @ifhtml, @html | 2114 | ;;; @ifinfo, @iftex, @tex, @ifhtml, @html, @ifnottex |
| 2115 | 2115 | ||
| 2116 | (put 'ifinfo 'texinfo-format 'texinfo-discard-line) | 2116 | (put 'ifinfo 'texinfo-format 'texinfo-discard-line) |
| 2117 | (put 'ifinfo 'texinfo-end 'texinfo-discard-command) | 2117 | (put 'ifinfo 'texinfo-end 'texinfo-discard-command) |
| @@ -2140,6 +2140,9 @@ This command is executed when texinfmt sees @item inside @multitable." | |||
| 2140 | (progn (re-search-forward "@end html[ \t]*\n") | 2140 | (progn (re-search-forward "@end html[ \t]*\n") |
| 2141 | (point)))) | 2141 | (point)))) |
| 2142 | 2142 | ||
| 2143 | (put 'ifnottex 'texinfo-format 'texinfo-discard-line) | ||
| 2144 | (put 'ifnottex 'texinfo-end 'texinfo-discard-command) | ||
| 2145 | |||
| 2143 | 2146 | ||
| 2144 | ;;; @titlepage | 2147 | ;;; @titlepage |
| 2145 | 2148 | ||