summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/ring.el
diff options
context:
space:
mode:
authorBrian Preble <rassilon@gnu.org>1991-04-23 00:08:11 +0000
committerBrian Preble <rassilon@gnu.org>1991-04-23 00:08:11 +0000
commitc6d27fc17c5e10386c3e437457ffbe8ff3c7da52 (patch)
tree94211fc605a392df162de3f4fa71362aeac66091 /lisp/emacs-lisp/ring.el
parentc0144cad5148e36f4302fb7423d50b672a413b26 (diff)
downloademacs-c6d27fc17c5e10386c3e437457ffbe8ff3c7da52.tar.gz
*** empty log message ***
Diffstat (limited to 'lisp/emacs-lisp/ring.el')
-rw-r--r--lisp/emacs-lisp/ring.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/ring.el b/lisp/emacs-lisp/ring.el
index 69b1d1995ac..95b993001fa 100644
--- a/lisp/emacs-lisp/ring.el
+++ b/lisp/emacs-lisp/ring.el
@@ -84,8 +84,8 @@ item to make room."
(set-car (cdr ring) tl)))))
(defun comint-mod (n m)
- "Returns N mod M. M is positive. Answer is guaranteed to be non-negative,
-and less than m."
+ "Returns N mod M. M is positive.
+Answer is guaranteed to be non-negative, and less than m."
(let ((n (% n m)))
(if (>= n 0) n
(+ n