aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
authorGlenn Morris2014-06-07 17:51:10 -0700
committerGlenn Morris2014-06-07 17:51:10 -0700
commit7b385b020102826e6f1cdd0dd9a8ec6c9b23236c (patch)
treecdb6bf6404c26946acff34d12d53182630d2eaf7 /src/data.c
parentda8de2908c35ad1fd5c437486d2ea5f6ebb75ca3 (diff)
downloademacs-7b385b020102826e6f1cdd0dd9a8ec6c9b23236c.tar.gz
emacs-7b385b020102826e6f1cdd0dd9a8ec6c9b23236c.zip
Doc tweaks re < etc
* doc/lispref/numbers.texi (Comparison of Numbers): Copyedits. * src/data.c (Flss, Fgtr, Fleq, Fgeq): Doc tweaks.
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{