From: João Távora Date: Sat, 29 Aug 2020 14:45:26 +0000 (+0100) Subject: ; tiny indentation fix to lisp/progmodes/elisp-mode.el X-Git-Tag: emacs-28.0.90~6318 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bf018eefa2a9c33f9f80e977ee085e89df526992;p=emacs.git ; tiny indentation fix to lisp/progmodes/elisp-mode.el * lisp/progmodes/elisp-mode.el (elisp-eldoc-var-docstring): Fix indentation. --- diff --git a/lisp/progmodes/elisp-mode.el b/lisp/progmodes/elisp-mode.el index 21ba42a0fe1..72b94a57b4a 100644 --- a/lisp/progmodes/elisp-mode.el +++ b/lisp/progmodes/elisp-mode.el @@ -1421,7 +1421,7 @@ Intended for `eldoc-documentation-functions' (which see)." "Document variable at point. Intended for `eldoc-documentation-functions' (which see)." (let* ((sym (elisp--current-symbol)) - (docstring (and sym (elisp-get-var-docstring sym)))) + (docstring (and sym (elisp-get-var-docstring sym)))) (when docstring (funcall callback docstring :thing sym