summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorSimen Heggestøyl <simenheg@gmail.com>2017-04-09 11:06:44 +0200
committerNoam Postavsky <npostavs@gmail.com>2018-06-21 20:27:35 -0400
commit3d2e3dc1ca8ee7226668ab5bbd35061d37bcbbec (patch)
tree1f31ec848274788407747826e2b0cd9def56ba6e /lisp/emacs-lisp
parent40e1db8ccd1239fc7da5ccd3f5f79017b2b44afc (diff)
downloademacs-3d2e3dc1ca8ee7226668ab5bbd35061d37bcbbec.tar.gz
emacs-3d2e3dc1ca8ee7226668ab5bbd35061d37bcbbec.tar.bz2
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/emacs-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."
(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."