From 08eba4dc5e3ade6888c78574f086c4ee32d54a56 Mon Sep 17 00:00:00 2001 From: "Kim F. Storm" Date: Thu, 5 Jun 2003 23:23:53 +0000 Subject: [PATCH] (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. --- lisp/info.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5