From 3d2e3dc1ca8ee7226668ab5bbd35061d37bcbbec Mon Sep 17 00:00:00 2001 From: Simen Heggestøyl Date: Sun, 9 Apr 2017 11:06:44 +0200 Subject: 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. --- lisp/emacs-lisp/seq.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lisp/emacs-lisp') 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." -- cgit v1.2.3