From e95419a63b76d9c6b1cca72d268f931d56843c79 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 21 Nov 1998 22:24:50 +0000 Subject: [PATCH] (describe-mode): Don't avoid loop indirecting thru value of INDICATOR. --- lisp/help.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lisp/help.el b/lisp/help.el index f99f6d20cd1..558119598af 100644 --- a/lisp/help.el +++ b/lisp/help.el @@ -349,7 +349,9 @@ describes the minor mode." (capitalize (substring (symbol-name minor-mode) 0 (match-beginning 0))))) - (while (and indicator (symbolp indicator)) + (while (and indicator (symbolp indicator) + (boundp indicator) + (not (eq indicator (symbol-value indicator)))) (setq indicator (symbol-value indicator))) (if first (princ "The minor modes are described first, -- 2.39.5