mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-06 06:20:55 -08:00
; 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
|
;; can't have a perfect result here, and
|
||||||
;; choose to avoid the byte-compiler
|
;; choose to avoid the byte-compiler
|
||||||
;; warnings.
|
;; 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
|
(concat
|
||||||
(internal--format-docstring-line
|
(internal--format-docstring-line
|
||||||
"Access slot \"%s\" of CL-X." slot)
|
"Access slot \"%s\" of CL-X." slot)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue