emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] emacs-24 r117219: Doc tweaks re < etc


From: Glenn Morris
Subject: [Emacs-diffs] emacs-24 r117219: Doc tweaks re < etc
Date: Sun, 08 Jun 2014 00:51:20 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 117219
revision-id: address@hidden
parent: address@hidden
committer: Glenn Morris <address@hidden>
branch nick: emacs-24
timestamp: Sat 2014-06-07 17:51:10 -0700
message:
  Doc tweaks re < etc
  
  * doc/lispref/numbers.texi (Comparison of Numbers): Copyedits.
  
  * src/data.c (Flss, Fgtr, Fleq, Fgeq): Doc tweaks.
modified:
  doc/lispref/ChangeLog          changelog-20091113204419-o5vbwnq5f7feedwu-6155
  doc/lispref/numbers.texi       
numbers.texi-20091113204419-o5vbwnq5f7feedwu-6203
  src/ChangeLog                  changelog-20091113204419-o5vbwnq5f7feedwu-1438
  src/data.c                     data.c-20091113204419-o5vbwnq5f7feedwu-251
=== modified file 'doc/lispref/ChangeLog'
--- a/doc/lispref/ChangeLog     2014-06-06 07:19:23 +0000
+++ b/doc/lispref/ChangeLog     2014-06-08 00:51:10 +0000
@@ -1,3 +1,7 @@
+2014-06-08  Glenn Morris  <address@hidden>
+
+       * numbers.texi (Comparison of Numbers): Copyedits.
+
 2014-06-06  Glenn Morris  <address@hidden>
 
        * display.texi (Window Systems): Remove window-setup-hook.

=== modified file 'doc/lispref/numbers.texi'
--- a/doc/lispref/numbers.texi  2014-03-19 21:21:01 +0000
+++ b/doc/lispref/numbers.texi  2014-06-08 00:51:10 +0000
@@ -400,27 +400,23 @@
 @end defun
 
 @defun <  number-or-marker &rest number-or-markers
-This function tests whether every argument is strictly less than the
-respective next argument.  It returns @code{t} if so, @code{nil}
-otherwise.
+This function tests whether each argument is strictly less than the
+following argument.  It returns @code{t} if so, @code{nil} otherwise.
 @end defun
 
 @defun <= number-or-marker &rest number-or-markers
-This function tests whether every argument is less than or equal to
-the respective next argument.  It returns @code{t} if so, @code{nil}
-otherwise.
+This function tests whether each argument is less than or equal to
+the following argument.  It returns @code{t} if so, @code{nil} otherwise.
 @end defun
 
 @defun > number-or-marker &rest number-or-markers
-This function tests whether every argument is strictly greater than
-the respective next argument.  It returns @code{t} if so, @code{nil}
-otherwise.
+This function tests whether each argument is strictly greater than
+the following argument.  It returns @code{t} if so, @code{nil} otherwise.
 @end defun
 
 @defun >= number-or-marker &rest number-or-markers
-This function tests whether every argument is greater than or equal to
-the respective next argument.  It returns @code{t} if so, @code{nil}
-otherwise.
+This function tests whether each argument is greater than or equal to
+the following argument.  It returns @code{t} if so, @code{nil} otherwise.
 @end defun
 
 @defun max number-or-marker &rest numbers-or-markers

=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2014-06-04 10:54:58 +0000
+++ b/src/ChangeLog     2014-06-08 00:51:10 +0000
@@ -1,3 +1,7 @@
+2014-06-08  Glenn Morris  <address@hidden>
+
+       * data.c (Flss, Fgtr, Fleq, Fgeq): Doc tweaks.
+
 2014-06-04  Eli Zaretskii  <address@hidden>
 
        * sysdep.c (reset_sys_modes): Use cursorX, not curX, as the latter

=== modified file 'src/data.c'
--- a/src/data.c        2014-04-13 22:51:08 +0000
+++ b/src/data.c        2014-06-08 00:51:10 +0000
@@ -2342,7 +2342,7 @@
 }
 
 DEFUN ("<", Flss, Slss, 1, MANY, 0,
-       doc: /* Return t if each arg is less than the next arg.  All must be 
numbers or markers.
+       doc: /* Return t if each arg (a number or marker), is less than the 
next arg.
 usage: (< NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS)  */)
   (ptrdiff_t nargs, Lisp_Object *args)
 {
@@ -2350,7 +2350,7 @@
 }
 
 DEFUN (">", Fgtr, Sgtr, 1, MANY, 0,
-       doc: /* Return t if each arg is greater than the next arg.  All must be 
numbers or markers.
+       doc: /* Return t if each arg (a number or marker) is greater than the 
next arg.
 usage: (> NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS)  */)
   (ptrdiff_t nargs, Lisp_Object *args)
 {
@@ -2358,8 +2358,7 @@
 }
 
 DEFUN ("<=", Fleq, Sleq, 1, MANY, 0,
-       doc: /* Return t if each arg is less than or equal to the next arg.
-All must be numbers or markers.
+       doc: /* Return t if each arg (a number or marker) is less than or equal 
to the next.
 usage: (<= NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS)  */)
   (ptrdiff_t nargs, Lisp_Object *args)
 {
@@ -2367,8 +2366,7 @@
 }
 
 DEFUN (">=", Fgeq, Sgeq, 1, MANY, 0,
-       doc: /* Return t if each arg is greater than or equal to the next arg.
-All must be numbers or markers.
+       doc: /* Return t if each arg (a number or marker) is greater than or 
equal to the next.
 usage: (>= NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS)  */)
   (ptrdiff_t nargs, Lisp_Object *args)
 {


reply via email to

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