emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/floatfns.c


From: Eli Zaretskii
Subject: [Emacs-diffs] Changes to emacs/src/floatfns.c
Date: Fri, 08 Feb 2002 05:18:42 -0500

Index: emacs/src/floatfns.c
diff -c emacs/src/floatfns.c:1.74 emacs/src/floatfns.c:1.75
*** emacs/src/floatfns.c:1.74   Tue Nov 13 19:07:09 2001
--- emacs/src/floatfns.c        Fri Feb  8 05:18:41 2002
***************
*** 859,865 ****
  
  DEFUN ("round", Fround, Sround, 1, 2, 0,
         doc: /* Return the nearest integer to ARG.
! With optional DIVISOR, return the nearest integer to ARG/DIVISOR.  */)
       (arg, divisor)
       Lisp_Object arg, divisor;
  {
--- 859,871 ----
  
  DEFUN ("round", Fround, Sround, 1, 2, 0,
         doc: /* Return the nearest integer to ARG.
! With optional DIVISOR, return the nearest integer to ARG/DIVISOR.
! 
! If ARG is equally close to both the nearest integer smaller than ARG
! and to the nearest integer larger than ARG, the result can be either
! of these two integers, depending on the underlying implementation of
! the system library.  For example, \(round 2.5\) can return 3 on some
! systems, but 3 on others.  */)
       (arg, divisor)
       Lisp_Object arg, divisor;
  {



reply via email to

[Prev in Thread] Current Thread [Next in Thread]