Change name of `seqp' argument (Bug#26411)
* lisp/emacs-lisp/seq.el (seqp): Change argument name. * doc/lispref/sequences.texi: Update the documentation for seqp.
This commit is contained in:
parent
40e1db8ccd
commit
3d2e3dc1ca
2 changed files with 5 additions and 5 deletions
|
@ -127,9 +127,9 @@ the sequence, and its index within the sequence."
|
|||
(setq index (1+ index)))
|
||||
sequence)))
|
||||
|
||||
(cl-defgeneric seqp (sequence)
|
||||
"Return non-nil if SEQUENCE is a sequence, nil otherwise."
|
||||
(sequencep sequence))
|
||||
(cl-defgeneric seqp (object)
|
||||
"Return non-nil if OBJECT is a sequence, nil otherwise."
|
||||
(sequencep object))
|
||||
|
||||
(cl-defgeneric seq-copy (sequence)
|
||||
"Return a shallow copy of SEQUENCE."
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue