From: Po Lu Date: Tue, 9 Jul 2024 01:35:16 +0000 (+0800) Subject: Fix byte-compiler warning in calc.el X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=731aed192618bba96a45ca5c1980629007faec63;p=emacs.git Fix byte-compiler warning in calc.el * lisp/calc/calc.el (calc-embedded-open-close-new-formula-alist): Remove previously introduced quotation marks, as they bring the width of the doc string past 80. (cherry picked from commit 15c591bad6282824adf33fa195733da416d3fef2) --- diff --git a/lisp/calc/calc.el b/lisp/calc/calc.el index 1bbc297e58c..f92e4958e33 100644 --- a/lisp/calc/calc.el +++ b/lisp/calc/calc.el @@ -341,7 +341,7 @@ See calc-embedded-open-plain." (defcustom calc-embedded-open-close-new-formula-alist nil - "Alist of major modes with pairs of new formula delimiters used by `calc-embedded'." + "Alist of major modes with pairs of new formula delimiters used by calc-embedded." :type '(alist :key-type (symbol :tag "Major mode") :value-type (list (string :tag "Opening new formula delimiter") (string :tag "Closing new formula delimiter"))))