diff options
author | Kim F. Storm <storm@cua.dk> | 2003-06-05 23:23:53 +0000 |
---|---|---|
committer | Kim F. Storm <storm@cua.dk> | 2003-06-05 23:23:53 +0000 |
commit | 08eba4dc5e3ade6888c78574f086c4ee32d54a56 (patch) | |
tree | 74e44100264877b27374ac1fa028cb056a9c4522 /lisp/info.el | |
parent | 396f3b27517238927ff1be5d52e7f753dc5c1f6f (diff) | |
download | emacs-08eba4dc5e3ade6888c78574f086c4ee32d54a56.tar.gz |
(Info-fontify-node): Don't refill over lines ending in a
period; this should fix problems with lists like one in the
(emacs)Library Keywords section.
Diffstat (limited to 'lisp/info.el')
-rw-r--r-- | lisp/info.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/info.el b/lisp/info.el index a20f517fae3..7cd20298b6b 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -2901,7 +2901,7 @@ the variable `Info-file-list-for-emacs'." (let ((fill-nobreak-invisible t) (fill-individual-varying-indent nil) (paragraph-start "\f\\|[ \t]*[-*]\\|[ \t]*$") - (paragraph-separate "[ \t]*[-*]\\|[ \t\f]*$") + (paragraph-separate ".*\\.[ \t]*\n[ \t]\\|[ \t]*[-*]\\|[ \t\f]*$") (adaptive-fill-mode nil)) (goto-char (point-max)) (while paragraph-markers |