diff options
| author | Clément Pit--Claudel | 2016-09-01 10:46:14 -0400 |
|---|---|---|
| committer | Clément Pit--Claudel | 2016-09-02 09:53:31 -0400 |
| commit | 803ad6f7e7a9c6bcf8a6cbf8eaad17501b114a33 (patch) | |
| tree | b7daefeb11abe0cf453b8712fa413de9656587b4 | |
| parent | ed4530dbc9c1ececa2b6f9c490f213746f336690 (diff) | |
| download | emacs-803ad6f7e7a9c6bcf8a6cbf8eaad17501b114a33.tar.gz emacs-803ad6f7e7a9c6bcf8a6cbf8eaad17501b114a33.zip | |
; Fix documentation of seq-subseq
| -rw-r--r-- | lisp/emacs-lisp/seq.el | 2 |
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. |
| 130 | END is inclusive. | 130 | END is exclusive. |
| 131 | 131 | ||
| 132 | If END is omitted, it defaults to the length of the sequence. If | 132 | If END is omitted, it defaults to the length of the sequence. If |
| 133 | START or END is negative, it counts from the end. Signal an | 133 | START or END is negative, it counts from the end. Signal an |