]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix bootstrap
authorStefan Kangas <stefankangas@gmail.com>
Wed, 13 Sep 2023 16:22:51 +0000 (18:22 +0200)
committerStefan Kangas <stefankangas@gmail.com>
Wed, 13 Sep 2023 16:22:51 +0000 (18:22 +0200)
* lisp/emacs-lisp/cl-macs.el (cl-defstruct): Don't use void variable.

lisp/emacs-lisp/cl-macs.el

index ef00f9e4fe47fa5934f3baa8e3bc7657d9578f51..7c207d372fcc19fe657199e4b8f6bf130088de6d 100644 (file)
@@ -3199,7 +3199,10 @@ To see the documentation for a defined struct type, use
                            ;; can't have a perfect result here, and
                            ;; choose to avoid the byte-compiler
                            ;; warnings.
-                           (if (>= (length long-docstring) byte-compile-docstring-max-column)
+                           (if (>= (length long-docstring)
+                                   (or (and (boundp 'byte-compile-docstring-max-column)
+                                            byte-compile-docstring-max-column)
+                                       80))
                                (concat
                                 (internal--format-docstring-line
                                  "Access slot \"%s\" of CL-X." slot)