From: Lars Ingebrigtsen Date: Mon, 31 May 2021 05:22:12 +0000 (+0200) Subject: Use buffer-local-boundp in describe-variable X-Git-Tag: emacs-28.0.90~2253 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=415ae812e93aa992c206bfb3d1c382d78209b8fe;p=emacs.git Use buffer-local-boundp in describe-variable * lisp/help-fns.el (describe-variable): Use `buffer-local-boundp'. --- diff --git a/lisp/help-fns.el b/lisp/help-fns.el index c8f078cb852..5a805a23028 100644 --- a/lisp/help-fns.el +++ b/lisp/help-fns.el @@ -1029,10 +1029,7 @@ it is displayed along with the global value." ;; Since the variable may only exist in the ;; original buffer, we have to look for it ;; there. - (condition-case nil - (buffer-local-value vv orig-buffer) - (:success t) - (void-variable nil))))) + (buffer-local-boundp vv orig-buffer)))) t nil nil (if (symbolp v) (symbol-name v)))) (list (if (equal val "")