diff options
| -rw-r--r-- | lisp/cl.el | 2 |
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). |
| 1809 | That is, the remainder goes with the quotient produced by `cl-floor'. | 1809 | That is, the remainder goes with the quotient produced by `cl-floor'. |
| 1810 | Emacs Lisp hint: | 1810 | Emacs Lisp hint: |