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 0c90944f0ad..2de1c19452c 100644
--- a/src/data.c
+++ b/src/data.c
@@ -2347,7 +2347,7 @@ usage: (= NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS) */)
2347} 2347}
2348 2348
2349DEFUN ("<", Flss, Slss, 1, MANY, 0, 2349DEFUN ("<", Flss, Slss, 1, MANY, 0,
2350 doc: /* Return t if each arg is less than the next arg. All must be numbers or markers. 2350 doc: /* Return t if each arg (a number or marker), is less than the next arg.
2351usage: (< NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS) */) 2351usage: (< NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS) */)
2352 (ptrdiff_t nargs, Lisp_Object *args) 2352 (ptrdiff_t nargs, Lisp_Object *args)
2353{ 2353{
@@ -2355,7 +2355,7 @@ usage: (< NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS) */)
2355} 2355}
2356 2356
2357DEFUN (">", Fgtr, Sgtr, 1, MANY, 0, 2357DEFUN (">", Fgtr, Sgtr, 1, MANY, 0,
2358 doc: /* Return t if each arg is greater than the next arg. All must be numbers or markers. 2358 doc: /* Return t if each arg (a number or marker) is greater than the next arg.
2359usage: (> NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS) */) 2359usage: (> NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS) */)
2360 (ptrdiff_t nargs, Lisp_Object *args) 2360 (ptrdiff_t nargs, Lisp_Object *args)
2361{ 2361{
@@ -2363,8 +2363,7 @@ usage: (> NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS) */)
2363} 2363}
2364 2364
2365DEFUN ("<=", Fleq, Sleq, 1, MANY, 0, 2365DEFUN ("<=", Fleq, Sleq, 1, MANY, 0,
2366 doc: /* Return t if each arg is less than or equal to the next arg. 2366 doc: /* Return t if each arg (a number or marker) is less than or equal to the next.
2367All must be numbers or markers.
2368usage: (<= NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS) */) 2367usage: (<= NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS) */)
2369 (ptrdiff_t nargs, Lisp_Object *args) 2368 (ptrdiff_t nargs, Lisp_Object *args)
2370{ 2369{
@@ -2372,8 +2371,7 @@ usage: (<= NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS) */)
2372} 2371}
2373 2372
2374DEFUN (">=", Fgeq, Sgeq, 1, MANY, 0, 2373DEFUN (">=", Fgeq, Sgeq, 1, MANY, 0,
2375 doc: /* Return t if each arg is greater than or equal to the next arg. 2374 doc: /* Return t if each arg (a number or marker) is greater than or equal to the next.
2376All must be numbers or markers.
2377usage: (>= NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS) */) 2375usage: (>= NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS) */)
2378 (ptrdiff_t nargs, Lisp_Object *args) 2376 (ptrdiff_t nargs, Lisp_Object *args)
2379{ 2377{