macroexp--cons doc fix
* lisp/emacs-lisp/macroexp.el (macroexp--cons): Doc fix (bug#19371).
This commit is contained in:
parent
6f888d0711
commit
530a4af66c
1 changed files with 2 additions and 1 deletions
|
@ -33,7 +33,8 @@
|
|||
(defvar macroexpand-all-environment nil)
|
||||
|
||||
(defun macroexp--cons (car cdr original-cons)
|
||||
"Return (CAR . CDR), using ORIGINAL-CONS if possible."
|
||||
"Return ORIGINAL-CONS if the car/cdr of it is `eq' to CAR and CDR, respectively.
|
||||
If not, return (CAR . CDR)."
|
||||
(if (and (eq car (car original-cons)) (eq cdr (cdr original-cons)))
|
||||
original-cons
|
||||
(cons car cdr)))
|
||||
|
|
Loading…
Add table
Reference in a new issue