From c6d27fc17c5e10386c3e437457ffbe8ff3c7da52 Mon Sep 17 00:00:00 2001 From: Brian Preble Date: Tue, 23 Apr 1991 00:08:11 +0000 Subject: *** empty log message *** --- lisp/emacs-lisp/ring.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lisp/emacs-lisp/ring.el') 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 -- cgit v1.2.1