aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
authorGlenn Morris2021-07-16 07:51:35 -0700
committerGlenn Morris2021-07-16 07:51:35 -0700
commit45cdc89986bb4ee60d7b64ee6ba0f717869aae5a (patch)
tree57f7596bed494a2863d1e3a706258486f5f50feb /src/data.c
parentd8d9504c5a9f1b6d22eae131334b981c65881f0e (diff)
parent7ac411ae2ce91572a2bdb8eaa1ee6ceccf162e35 (diff)
downloademacs-45cdc89986bb4ee60d7b64ee6ba0f717869aae5a.tar.gz
emacs-45cdc89986bb4ee60d7b64ee6ba0f717869aae5a.zip
Merge from origin/emacs-27
7ac411ae2c (origin/emacs-27) ; * src/data.c (Fcar, Fcdr): Doc fix. 0d9e1826f7 One more minor update of the Emacs manual for 19th printing 92616d30e0 ; Fix let-alist Texinfo markup c13acf8e34 ; * doc/emacs/mule.texi (International Chars): Mention 'de...
Diffstat (limited to 'src/data.c')
-rw-r--r--src/data.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/data.c b/src/data.c
index 059f31e514b..9adfafacaa5 100644
--- a/src/data.c
+++ b/src/data.c
@@ -581,8 +581,8 @@ DEFUN ("condition-variable-p", Fcondition_variable_p, Scondition_variable_p,
581/* Extract and set components of lists. */ 581/* Extract and set components of lists. */
582 582
583DEFUN ("car", Fcar, Scar, 1, 1, 0, 583DEFUN ("car", Fcar, Scar, 1, 1, 0,
584 doc: /* Return the car of LIST. If arg is nil, return nil. 584 doc: /* Return the car of LIST. If LIST is nil, return nil.
585Error if arg is not nil and not a cons cell. See also `car-safe'. 585Error if LIST is not nil and not a cons cell. See also `car-safe'.
586 586
587See Info node `(elisp)Cons Cells' for a discussion of related basic 587See Info node `(elisp)Cons Cells' for a discussion of related basic
588Lisp concepts such as car, cdr, cons cell and list. */) 588Lisp concepts such as car, cdr, cons cell and list. */)
@@ -599,8 +599,8 @@ DEFUN ("car-safe", Fcar_safe, Scar_safe, 1, 1, 0,
599} 599}
600 600
601DEFUN ("cdr", Fcdr, Scdr, 1, 1, 0, 601DEFUN ("cdr", Fcdr, Scdr, 1, 1, 0,
602 doc: /* Return the cdr of LIST. If arg is nil, return nil. 602 doc: /* Return the cdr of LIST. If LIST is nil, return nil.
603Error if arg is not nil and not a cons cell. See also `cdr-safe'. 603Error if LIST is not nil and not a cons cell. See also `cdr-safe'.
604 604
605See Info node `(elisp)Cons Cells' for a discussion of related basic 605See Info node `(elisp)Cons Cells' for a discussion of related basic
606Lisp concepts such as cdr, car, cons cell and list. */) 606Lisp concepts such as cdr, car, cons cell and list. */)