diff lisp/vc.el @ 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 208145c77950
children 29bd5f3d0059
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))))))