From 7b385b020102826e6f1cdd0dd9a8ec6c9b23236c Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Sat, 7 Jun 2014 17:51:10 -0700 Subject: [PATCH] Doc tweaks re < etc * doc/lispref/numbers.texi (Comparison of Numbers): Copyedits. * src/data.c (Flss, Fgtr, Fleq, Fgeq): Doc tweaks. --- doc/lispref/ChangeLog | 4 ++++ doc/lispref/numbers.texi | 20 ++++++++------------ src/ChangeLog | 4 ++++ src/data.c | 10 ++++------ 4 files changed, 20 insertions(+), 18 deletions(-) diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 1e6b9f445c7..1a4c9c3a57c 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog @@ -1,3 +1,7 @@ +2014-06-08 Glenn Morris + + * numbers.texi (Comparison of Numbers): Copyedits. + 2014-06-06 Glenn Morris * display.texi (Window Systems): Remove window-setup-hook. diff --git a/doc/lispref/numbers.texi b/doc/lispref/numbers.texi index 5da950e1601..8fcd77c009a 100644 --- a/doc/lispref/numbers.texi +++ b/doc/lispref/numbers.texi @@ -400,27 +400,23 @@ returns @code{t} if they are not, and @code{nil} if they are. @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 diff --git a/src/ChangeLog b/src/ChangeLog index c6a68f5b90c..7f963fe7ba9 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2014-06-08 Glenn Morris + + * data.c (Flss, Fgtr, Fleq, Fgeq): Doc tweaks. + 2014-06-04 Eli Zaretskii * sysdep.c (reset_sys_modes): Use cursorX, not curX, as the latter diff --git a/src/data.c b/src/data.c index 33dd619a0e1..4cb569bd943 100644 --- a/src/data.c +++ b/src/data.c @@ -2342,7 +2342,7 @@ usage: (= NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS) */) } 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 @@ usage: (< NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS) */) } 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 @@ usage: (> NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS) */) } 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 @@ usage: (<= NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS) */) } 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) { -- 2.39.5