diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-09-24 14:46:56 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-09-26 13:23:57 +0200 |
commit | c78e16962e63895d340f80cf245fad568a7da770 (patch) | |
tree | fd8912ae6e025f7c20ecce2eea1708e092a5093f /lisp/emacs-lisp | |
parent | f4ea15907aeb020b80d021a8d6bf212bcde08ab9 (diff) | |
download | emacs-c78e16962e63895d340f80cf245fad568a7da770.tar.gz emacs-c78e16962e63895d340f80cf245fad568a7da770.tar.bz2 emacs-c78e16962e63895d340f80cf245fad568a7da770.zip |
; Adjust overly long docstrings to fit 80 characters
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/eieio-core.el | 2 | ||||
-rw-r--r-- | lisp/emacs-lisp/seq.el | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/eieio-core.el b/lisp/emacs-lisp/eieio-core.el index b11ed3333f0..80d1711d817 100644 --- a/lisp/emacs-lisp/eieio-core.el +++ b/lisp/emacs-lisp/eieio-core.el @@ -953,7 +953,7 @@ need be... May remove that later...)" class)) (defun eieio--c3-merge-lists (reversed-partial-result remaining-inputs) - "Merge REVERSED-PARTIAL-RESULT REMAINING-INPUTS in a consistent order, if possible. + "Try to merge REVERSED-PARTIAL-RESULT REMAINING-INPUTS in a consistent order. If a consistent order does not exist, signal an error." (setq remaining-inputs (delq nil remaining-inputs)) (if (null remaining-inputs) diff --git a/lisp/emacs-lisp/seq.el b/lisp/emacs-lisp/seq.el index e7258c2da49..52c080388b7 100644 --- a/lisp/emacs-lisp/seq.el +++ b/lisp/emacs-lisp/seq.el @@ -529,7 +529,7 @@ SEQUENCE must be a sequence of numbers or markers." (apply #'max (seq-into sequence 'list))) (defun seq--count-successive (pred sequence) - "Return the number of successive elements for which (PRED element) is non-nil in SEQUENCE." + "Count successive elements for which (PRED element) is non-nil in SEQUENCE." (let ((n 0) (len (seq-length sequence))) (while (and (< n len) @@ -538,7 +538,7 @@ SEQUENCE must be a sequence of numbers or markers." n)) (defun seq--make-pcase-bindings (args) - "Return a list of bindings of the variables in ARGS to the elements of a sequence." + "Return list of bindings of the variables in ARGS to the elements of a sequence." (let ((bindings '()) (index 0) (rest-marker nil)) |