aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1993-06-01 16:30:54 +0000
committerRichard M. Stallman1993-06-01 16:30:54 +0000
commitf3773a0010cc6a6de312d027aeeaa3ce45d9a957 (patch)
tree00f90792bfa6a60f3535efd1545e966a9019f304
parent74edd776903d89d16042d7e27edf41a697f08505 (diff)
downloademacs-f3773a0010cc6a6de312d027aeeaa3ce45d9a957.tar.gz
emacs-f3773a0010cc6a6de312d027aeeaa3ce45d9a957.zip
(cl-mod): Renamed from mod.
-rw-r--r--lisp/cl.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/cl.el b/lisp/cl.el
index e4777ef3794..aeb90b9977f 100644
--- a/lisp/cl.el
+++ b/lisp/cl.el
@@ -1804,7 +1804,7 @@ DIVISOR defaults to 1. The remainder is produced as a second value."
1804;;; These two functions access the implementation-dependent representation of 1804;;; These two functions access the implementation-dependent representation of
1805;;; the multiple value returns. 1805;;; the multiple value returns.
1806 1806
1807(defun mod (number divisor) 1807(defun cl-mod (number divisor)
1808 "Return remainder of X by Y (rounding quotient toward minus infinity). 1808 "Return remainder of X by Y (rounding quotient toward minus infinity).
1809That is, the remainder goes with the quotient produced by `cl-floor'. 1809That is, the remainder goes with the quotient produced by `cl-floor'.
1810Emacs Lisp hint: 1810Emacs Lisp hint: