From 19c44e2be30a2549db446308a128acdff4686c28 Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Sun, 26 Jun 2022 21:41:42 +0200 Subject: [PATCH] Font-lock variable values in *Help* * lisp/help-fns.el (describe-variable): Font-lock the variable value (bug#47363). --- lisp/help-fns.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/help-fns.el b/lisp/help-fns.el index 43855cd6d72..364fce4ea64 100644 --- a/lisp/help-fns.el +++ b/lisp/help-fns.el @@ -1239,10 +1239,11 @@ it is displayed along with the global value." (terpri) (let ((buf (current-buffer))) (with-temp-buffer - (lisp-mode-variables nil) + (lisp-data-mode) (set-syntax-table emacs-lisp-mode-syntax-table) (insert print-rep) (pp-buffer) + (font-lock-ensure) (let ((pp-buffer (current-buffer))) (with-current-buffer buf (insert-buffer-substring pp-buffer))))) -- 2.39.5