From: Paul W. Rankin Date: Tue, 24 May 2022 22:19:57 +0000 (-0400) Subject: Change variable which-func-unknown to "n/a" X-Git-Tag: emacs-29.0.90~1910^2~433 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b93c22e67dc856cfc15e488774ebff1f5d151e42;p=emacs.git Change variable which-func-unknown to "n/a" * lisp/progmodes/which-func.el (which-func-unknown): Change string displayed in mode-line from "???" to "n/a"; the former appears to indicate an error whereas the latter is more indicative that the current function is not known. --- diff --git a/lisp/progmodes/which-func.el b/lisp/progmodes/which-func.el index abe25f2c633..3c8d4f43dbc 100644 --- a/lisp/progmodes/which-func.el +++ b/lisp/progmodes/which-func.el @@ -64,7 +64,7 @@ ;; Variables for customization ;; --------------------------- ;; -(defvar which-func-unknown "???" +(defvar which-func-unknown "n/a" "String to display in the mode line when current function is unknown.") (defgroup which-func nil