diff options
| author | Eli Zaretskii | 2002-02-08 13:03:27 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2002-02-08 13:03:27 +0000 |
| commit | 59fe0cee1425093d96bce336ce9fa16f6a57d813 (patch) | |
| tree | 944f1b62c0a84969a4e95478b44806eba034b63f /src/floatfns.c | |
| parent | 4f759c801bce76ca72823ad4cb8a6dd9a564c2c2 (diff) | |
| download | emacs-59fe0cee1425093d96bce336ce9fa16f6a57d813.tar.gz emacs-59fe0cee1425093d96bce336ce9fa16f6a57d813.zip | |
(Fround): Fix a typo.
Diffstat (limited to 'src/floatfns.c')
| -rw-r--r-- | src/floatfns.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/floatfns.c b/src/floatfns.c index 708dfab547a..fabbffb4408 100644 --- a/src/floatfns.c +++ b/src/floatfns.c | |||
| @@ -864,7 +864,7 @@ With optional DIVISOR, return the nearest integer to ARG/DIVISOR. | |||
| 864 | Rounding a value equidistant between two integers may choose the | 864 | Rounding a value equidistant between two integers may choose the |
| 865 | integer closer to zero, or it may prefer an even integer, depending on | 865 | integer closer to zero, or it may prefer an even integer, depending on |
| 866 | your machine. For example, \(round 2.5\) can return 3 on some | 866 | your machine. For example, \(round 2.5\) can return 3 on some |
| 867 | systems, but 3 on others. */) | 867 | systems, but 2 on others. */) |
| 868 | (arg, divisor) | 868 | (arg, divisor) |
| 869 | Lisp_Object arg, divisor; | 869 | Lisp_Object arg, divisor; |
| 870 | { | 870 | { |