changeset 25473:1ad8606c8cc7

(help-make-xrefs): Don't lose on non-empty blank line after key table.
author Dave Love <fx@gnu.org>
date Tue, 31 Aug 1999 17:17:18 +0000
parents 2c32043b312e
children e87d80337a64
files lisp/help.el
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/help.el	Tue Aug 31 16:41:06 1999 +0000
+++ b/lisp/help.el	Tue Aug 31 17:17:18 1999 +0000
@@ -1,6 +1,6 @@
 ;;; help.el --- help commands for Emacs
 
-;; Copyright (C) 1985, 1986, 1993, 1994, 1998 Free Software Foundation, Inc.
+;; Copyright (C) 1985, 1986, 1993, 1994, 1998, 1999 Free Software Foundation, Inc.
 
 ;; Maintainer: FSF
 ;; Keywords: help, internal
@@ -25,7 +25,7 @@
 ;;; Commentary:
 
 ;; This code implements GNU Emacs' on-line help system, the one invoked by
-;;`M-x help-for-help'.
+;; `M-x help-for-help'.
 
 ;;; Code:
 
@@ -1050,7 +1050,7 @@
                     (while
                         ;; Ignore single blank lines in table, but not
                         ;; double ones, which should terminate it.
-                        (and (not (looking-at "\n\n"))
+                        (and (not (looking-at "\n\\s-*\n"))
                              (progn
 			       (and (eolp) (forward-line))
 			       (end-of-line)