emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 32ded573cc4: ; Fix bootstrap


From: Stefan Kangas
Subject: master 32ded573cc4: ; Fix bootstrap
Date: Wed, 13 Sep 2023 12:28:06 -0400 (EDT)

branch: master
commit 32ded573cc4a58546ad60b44f454ba86c80a929d
Author: Stefan Kangas <stefankangas@gmail.com>
Commit: Stefan Kangas <stefankangas@gmail.com>

    ; Fix bootstrap
    
    * lisp/emacs-lisp/cl-macs.el (cl-defstruct): Don't use void variable.
---
 lisp/emacs-lisp/cl-macs.el | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el
index ef00f9e4fe4..7c207d372fc 100644
--- a/lisp/emacs-lisp/cl-macs.el
+++ b/lisp/emacs-lisp/cl-macs.el
@@ -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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]