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
commit3666f39cfd666e72a5ff04d0ca02c106afd70e19 (patch)
tree85a19c49ecf198404347951369bea54a47219429 /lisp/emacs-lisp/ring.el
parent0101ec2ad0d1746857bb5aa13a9a8e2afe964aef (diff)
downloademacs-3666f39cfd666e72a5ff04d0ca02c106afd70e19.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