summaryrefslogtreecommitdiff
path: root/lisp/help.el
diff options
context:
space:
mode:
authorDave Love <fx@gnu.org>1999-08-31 17:17:18 +0000
committerDave Love <fx@gnu.org>1999-08-31 17:17:18 +0000
commit95ac0a6fa5cac9b075900d199dee9db6863ba22f (patch)
tree131e728452ae826cec1be782697fc991b23e02c5 /lisp/help.el
parent46c7aa656c3366db08331bae5dd0dca9c5245d21 (diff)
downloademacs-95ac0a6fa5cac9b075900d199dee9db6863ba22f.tar.gz
(help-make-xrefs): Don't lose on non-empty blank line after key table.
Diffstat (limited to 'lisp/help.el')
-rw-r--r--lisp/help.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/help.el b/lisp/help.el
index b9b71903e00..40d8521e7dc 100644
--- a/lisp/help.el
+++ b/lisp/help.el
@@ -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 @@ that."
(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)