diff options
| author | Robert J. Chassell | 2002-11-24 02:18:01 +0000 |
|---|---|---|
| committer | Robert J. Chassell | 2002-11-24 02:18:01 +0000 |
| commit | 2a64dfcec3acabd11164d2577be72db7ac337063 (patch) | |
| tree | 8df26eb1e65970bdd41c81165834db4539d3ce36 | |
| parent | 289df0fc4c20396847a44ed44de6092a6e78a93e (diff) | |
| download | emacs-2a64dfcec3acabd11164d2577be72db7ac337063.tar.gz emacs-2a64dfcec3acabd11164d2577be72db7ac337063.zip | |
(texinfo-no-refill-regexp): add "itemize\\|" because of a problem with
@end itemize@refill, but worry whether this causes other problems.
| -rw-r--r-- | lisp/textmodes/texinfmt.el | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lisp/textmodes/texinfmt.el b/lisp/textmodes/texinfmt.el index 705cf2f534d..05af40f1f94 100644 --- a/lisp/textmodes/texinfmt.el +++ b/lisp/textmodes/texinfmt.el | |||
| @@ -477,6 +477,12 @@ if large. You can use Info-split to do this manually." | |||
| 477 | (concat | 477 | (concat |
| 478 | "^@" | 478 | "^@" |
| 479 | "\\(" | 479 | "\\(" |
| 480 | ;; add "itemize\\|" (from experiment of 2001 Nov 28) | ||
| 481 | ;; because of a problem with @end itemize@refill | ||
| 482 | ;; I don't know if this causes other problems. | ||
| 483 | ;; I suspect itemized lists don't get filled properly and a | ||
| 484 | ;; more precise fix is required. Bob | ||
| 485 | "itemize\\|" | ||
| 480 | "direntry\\|" | 486 | "direntry\\|" |
| 481 | "lisp\\|" | 487 | "lisp\\|" |
| 482 | "smalllisp\\|" | 488 | "smalllisp\\|" |