diff options
author | Philipp Stephani <phst@google.com> | 2022-04-03 17:51:04 +0200 |
---|---|---|
committer | Philipp Stephani <phst@google.com> | 2022-04-03 17:51:04 +0200 |
commit | 3c6524140b7a5e68875541781c3c48853e763dc3 (patch) | |
tree | bb42eae61cf1093bd4389f981792e2e9725bef4c /lisp/emacs-lisp | |
parent | 45011b77f42ad87844e757c218a9d4283348d410 (diff) | |
download | emacs-3c6524140b7a5e68875541781c3c48853e763dc3.tar.gz emacs-3c6524140b7a5e68875541781c3c48853e763dc3.tar.bz2 emacs-3c6524140b7a5e68875541781c3c48853e763dc3.zip |
; * lisp/emacs-lisp/cl-macs.el (cl-struct-slot-value): Fix typo.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/cl-macs.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el index 5d2a7c03ac4..da7157f4341 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el @@ -3625,7 +3625,7 @@ The type name can then be used in `cl-typecase', `cl-check-type', etc." (define-inline cl-struct-slot-value (struct-type slot-name inst) "Return the value of slot SLOT-NAME in INST of STRUCT-TYPE. -STRUCT and SLOT-NAME are symbols. INST is a structure instance." +STRUCT-TYPE and SLOT-NAME are symbols. INST is a structure instance." (declare (side-effect-free t)) (inline-letevals (struct-type slot-name inst) (inline-quote |