From: Mattias EngdegÄrd Date: Tue, 22 Jul 2025 09:30:02 +0000 (+0200) Subject: * lisp/custom.el (defcustom): Remove empty doc string. X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=66fc5b5cb08b8d869d624e612ce21b668c814559;p=emacs.git * lisp/custom.el (defcustom): Remove empty doc string. It is no longer needed because (lambda () "hello") has no doc string. (cherry picked from commit b7f2d994c693f1dcd23c38aeeab8b178cb850174) --- diff --git a/lisp/custom.el b/lisp/custom.el index 048e4a55c72..40bde43caf7 100644 --- a/lisp/custom.el +++ b/lisp/custom.el @@ -400,7 +400,7 @@ for more information." ;; expression is checked by the byte-compiler, and that ;; lexical-binding is obeyed, so quote the expression with ;; `lambda' rather than with `quote'. - ``(funcall #',(lambda () "" ,standard)) + ``(funcall #',(lambda () ,standard)) `',standard) ,doc ,@args))