Mercurial > emacs
changeset 4509:aeef9d07f78d
(vc-previous-comment): Use `mod', not `ring-mod'.
author | Paul Eggert <eggert@twinsun.com> |
---|---|
date | Tue, 10 Aug 1993 04:14:17 +0000 |
parents | 763987892042 |
children | 10baf5e7550f |
files | lisp/vc.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/vc.el Tue Aug 10 04:14:17 1993 +0000 +++ b/lisp/vc.el Tue Aug 10 04:14:17 1993 +0000 @@ -679,7 +679,7 @@ (if (> arg 0) -1 (if (< arg 0) 1 0)))) (setq vc-comment-ring-index - (ring-mod (+ vc-comment-ring-index arg) len)) + (mod (+ vc-comment-ring-index arg) len)) (message "%d" (1+ vc-comment-ring-index)) (insert (ring-ref vc-comment-ring vc-comment-ring-index))))))