aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/data.c')
-rw-r--r--src/data.c10
1 files changed, 4 insertions, 6 deletions
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) */)
2342} 2342}
2343 2343
2344DEFUN ("<", Flss, Slss, 1, MANY, 0, 2344DEFUN ("<", Flss, Slss, 1, MANY, 0,
2345 doc: /* Return t if each arg is less than the next arg. All must be numbers or markers. 2345 doc: /* Return t if each arg (a number or marker), is less than the next arg.
2346usage: (< NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS) */) 2346usage: (< NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS) */)
2347 (ptrdiff_t nargs, Lisp_Object *args) 2347 (ptrdiff_t nargs, Lisp_Object *args)
2348{ 2348{
@@ -2350,7 +2350,7 @@ usage: (< NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS) */)
2350} 2350}
2351 2351
2352DEFUN (">", Fgtr, Sgtr, 1, MANY, 0, 2352DEFUN (">", Fgtr, Sgtr, 1, MANY, 0,
2353 doc: /* Return t if each arg is greater than the next arg. All must be numbers or markers. 2353 doc: /* Return t if each arg (a number or marker) is greater than the next arg.
2354usage: (> NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS) */) 2354usage: (> NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS) */)
2355 (ptrdiff_t nargs, Lisp_Object *args) 2355 (ptrdiff_t nargs, Lisp_Object *args)
2356{ 2356{
@@ -2358,8 +2358,7 @@ usage: (> NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS) */)
2358} 2358}
2359 2359
2360DEFUN ("<=", Fleq, Sleq, 1, MANY, 0, 2360DEFUN ("<=", Fleq, Sleq, 1, MANY, 0,
2361 doc: /* Return t if each arg is less than or equal to the next arg. 2361 doc: /* Return t if each arg (a number or marker) is less than or equal to the next.
2362All must be numbers or markers.
2363usage: (<= NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS) */) 2362usage: (<= NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS) */)
2364 (ptrdiff_t nargs, Lisp_Object *args) 2363 (ptrdiff_t nargs, Lisp_Object *args)
2365{ 2364{
@@ -2367,8 +2366,7 @@ usage: (<= NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS) */)
2367} 2366}
2368 2367
2369DEFUN (">=", Fgeq, Sgeq, 1, MANY, 0, 2368DEFUN (">=", Fgeq, Sgeq, 1, MANY, 0,
2370 doc: /* Return t if each arg is greater than or equal to the next arg. 2369 doc: /* Return t if each arg (a number or marker) is greater than or equal to the next.
2371All must be numbers or markers.
2372usage: (>= NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS) */) 2370usage: (>= NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS) */)
2373 (ptrdiff_t nargs, Lisp_Object *args) 2371 (ptrdiff_t nargs, Lisp_Object *args)
2374{ 2372{