1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-02-08 20:58:58 +00:00

Doc tweaks re < etc

* doc/lispref/numbers.texi (Comparison of Numbers): Copyedits.

* src/data.c (Flss, Fgtr, Fleq, Fgeq): Doc tweaks.
This commit is contained in:
Glenn Morris 2014-06-07 17:51:10 -07:00
parent da8de2908c
commit 7b385b0201
4 changed files with 20 additions and 18 deletions

View File

@ -1,3 +1,7 @@
2014-06-08 Glenn Morris <rgm@gnu.org>
* numbers.texi (Comparison of Numbers): Copyedits.
2014-06-06 Glenn Morris <rgm@gnu.org>
* display.texi (Window Systems): Remove window-setup-hook.

View File

@ -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

View File

@ -1,3 +1,7 @@
2014-06-08 Glenn Morris <rgm@gnu.org>
* data.c (Flss, Fgtr, Fleq, Fgeq): Doc tweaks.
2014-06-04 Eli Zaretskii <eliz@gnu.org>
* sysdep.c (reset_sys_modes): Use cursorX, not curX, as the latter

View File

@ -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)
{