; Fix bootstrap
* lisp/emacs-lisp/cl-macs.el (cl-defstruct): Don't use void variable.
This commit is contained in:
parent
012f9c2805
commit
32ded573cc
1 changed files with 4 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue