aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClément Pit--Claudel2016-09-01 10:46:14 -0400
committerClément Pit--Claudel2016-09-02 09:53:31 -0400
commit803ad6f7e7a9c6bcf8a6cbf8eaad17501b114a33 (patch)
treeb7daefeb11abe0cf453b8712fa413de9656587b4
parented4530dbc9c1ececa2b6f9c490f213746f336690 (diff)
downloademacs-803ad6f7e7a9c6bcf8a6cbf8eaad17501b114a33.tar.gz
emacs-803ad6f7e7a9c6bcf8a6cbf8eaad17501b114a33.zip
; Fix documentation of seq-subseq
-rw-r--r--lisp/emacs-lisp/seq.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/seq.el b/lisp/emacs-lisp/seq.el
index 8362ddafd3f..904aad0afef 100644
--- a/lisp/emacs-lisp/seq.el
+++ b/lisp/emacs-lisp/seq.el
@@ -127,7 +127,7 @@ Return SEQUENCE."
127 127
128(cl-defgeneric seq-subseq (sequence start &optional end) 128(cl-defgeneric seq-subseq (sequence start &optional end)
129 "Return the sequence of elements of SEQUENCE from START to END. 129 "Return the sequence of elements of SEQUENCE from START to END.
130END is inclusive. 130END is exclusive.
131 131
132If END is omitted, it defaults to the length of the sequence. If 132If END is omitted, it defaults to the length of the sequence. If
133START or END is negative, it counts from the end. Signal an 133START or END is negative, it counts from the end. Signal an