diff options
| author | Juanma Barranquero | 2022-11-04 08:41:43 +0100 |
|---|---|---|
| committer | Juanma Barranquero | 2022-11-04 08:41:43 +0100 |
| commit | 4fa8f57cc627166f4f7f1a915bb24923f413a3d0 (patch) | |
| tree | abb4e74bb0d9fa789fe88497a8d97450f1103ff6 | |
| parent | 116f69d741afb312c826647f303ad8488d355bee (diff) | |
| download | emacs-4fa8f57cc627166f4f7f1a915bb24923f413a3d0.tar.gz emacs-4fa8f57cc627166f4f7f1a915bb24923f413a3d0.zip | |
; * lisp/emacs-lisp/oclosure.el: Fix typos.
| -rw-r--r-- | lisp/emacs-lisp/oclosure.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/oclosure.el b/lisp/emacs-lisp/oclosure.el index c77ac151d77..a17fdb7e359 100644 --- a/lisp/emacs-lisp/oclosure.el +++ b/lisp/emacs-lisp/oclosure.el | |||
| @@ -216,7 +216,7 @@ is a list of additional properties among the following: | |||
| 216 | function) named COPIER. It will take an object of type NAME as first | 216 | function) named COPIER. It will take an object of type NAME as first |
| 217 | argument followed by ARGS. ARGS lists the names of the slots that will | 217 | argument followed by ARGS. ARGS lists the names of the slots that will |
| 218 | be updated with the value of the corresponding argument. | 218 | be updated with the value of the corresponding argument. |
| 219 | SLOTS is a list if slot descriptions. Each slot can be a single symbol | 219 | SLOTS is a list of slot descriptions. Each slot can be a single symbol |
| 220 | which is the name of the slot, or it can be of the form (SLOT-NAME . SPROPS) | 220 | which is the name of the slot, or it can be of the form (SLOT-NAME . SPROPS) |
| 221 | where SLOT-NAME is then the name of the slot and SPROPS is a property | 221 | where SLOT-NAME is then the name of the slot and SPROPS is a property |
| 222 | list of slot properties. The currently known properties are the following: | 222 | list of slot properties. The currently known properties are the following: |
| @@ -341,11 +341,11 @@ list of slot properties. The currently known properties are the following: | |||
| 341 | 341 | ||
| 342 | (defmacro oclosure--lambda (type bindings mutables args &rest body) | 342 | (defmacro oclosure--lambda (type bindings mutables args &rest body) |
| 343 | "Low level construction of an OClosure object. | 343 | "Low level construction of an OClosure object. |
| 344 | TYPE should be a form returning an OClosure type (a symbol) | 344 | TYPE should be a form returning an OClosure type (a symbol). |
| 345 | BINDINGS should list all the slots expected by this type, in the proper order. | 345 | BINDINGS should list all the slots expected by this type, in the proper order. |
| 346 | MUTABLE is a list of symbols indicating which of the BINDINGS | 346 | MUTABLE is a list of symbols indicating which of the BINDINGS |
| 347 | should be mutable. | 347 | should be mutable. |
| 348 | No checking is performed," | 348 | No checking is performed." |
| 349 | (declare (indent 3) (debug (sexp (&rest (sexp form)) sexp def-body))) | 349 | (declare (indent 3) (debug (sexp (&rest (sexp form)) sexp def-body))) |
| 350 | ;; FIXME: Fundamentally `oclosure-lambda' should be a special form. | 350 | ;; FIXME: Fundamentally `oclosure-lambda' should be a special form. |
| 351 | ;; We define it here as a macro which expands to something that | 351 | ;; We define it here as a macro which expands to something that |