aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorSimen Heggestøyl2017-04-09 11:06:44 +0200
committerNoam Postavsky2018-06-21 20:27:35 -0400
commit3d2e3dc1ca8ee7226668ab5bbd35061d37bcbbec (patch)
tree1f31ec848274788407747826e2b0cd9def56ba6e /lisp
parent40e1db8ccd1239fc7da5ccd3f5f79017b2b44afc (diff)
downloademacs-3d2e3dc1ca8ee7226668ab5bbd35061d37bcbbec.tar.gz
emacs-3d2e3dc1ca8ee7226668ab5bbd35061d37bcbbec.zip
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.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/emacs-lisp/seq.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/seq.el b/lisp/emacs-lisp/seq.el
index 5d6ab7e057f..b40c424e303 100644
--- a/lisp/emacs-lisp/seq.el
+++ b/lisp/emacs-lisp/seq.el
@@ -127,9 +127,9 @@ the sequence, and its index within the sequence."
127 (setq index (1+ index))) 127 (setq index (1+ index)))
128 sequence))) 128 sequence)))
129 129
130(cl-defgeneric seqp (sequence) 130(cl-defgeneric seqp (object)
131 "Return non-nil if SEQUENCE is a sequence, nil otherwise." 131 "Return non-nil if OBJECT is a sequence, nil otherwise."
132 (sequencep sequence)) 132 (sequencep object))
133 133
134(cl-defgeneric seq-copy (sequence) 134(cl-defgeneric seq-copy (sequence)
135 "Return a shallow copy of SEQUENCE." 135 "Return a shallow copy of SEQUENCE."