From 415ae812e93aa992c206bfb3d1c382d78209b8fe Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Mon, 31 May 2021 07:22:12 +0200 Subject: [PATCH] Use buffer-local-boundp in describe-variable * lisp/help-fns.el (describe-variable): Use `buffer-local-boundp'. --- lisp/help-fns.el | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) 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 "") -- 2.39.2