[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] trunk r115649: Document that =, <, <=, >, >= now accept on
From: |
Tassilo Horn |
Subject: |
[Emacs-diffs] trunk r115649: Document that =, <, <=, >, >= now accept one or many arguments. |
Date: |
Fri, 20 Dec 2013 18:41:50 +0000 |
User-agent: |
Bazaar (2.6b2) |
------------------------------------------------------------
revno: 115649
revision-id: address@hidden
parent: address@hidden
committer: Tassilo Horn <address@hidden>
branch nick: trunk
timestamp: Fri 2013-12-20 19:41:31 +0100
message:
Document that =, <, <=, >, >= now accept one or many arguments.
* doc/lispref/numbers.texi (numbers): Document that =, <, <=, >, >= now accept
one or many arguments.
modified:
doc/lispref/ChangeLog changelog-20091113204419-o5vbwnq5f7feedwu-6155
doc/lispref/numbers.texi
numbers.texi-20091113204419-o5vbwnq5f7feedwu-6203
etc/NEWS news-20100311060928-aoit31wvzf25yr1z-1
=== modified file 'doc/lispref/ChangeLog'
--- a/doc/lispref/ChangeLog 2013-12-20 14:28:01 +0000
+++ b/doc/lispref/ChangeLog 2013-12-20 18:41:31 +0000
@@ -1,5 +1,8 @@
2013-12-20 Tassilo Horn <address@hidden>
+ * numbers.texi (numbers): Document that =, <, <=, >, >= now accept
+ one or many arguments.
+
* display.texi: Document `messages-buffer'.
* os.texi: Document `initial-buffer-choice' changes.
=== modified file 'doc/lispref/numbers.texi'
--- a/doc/lispref/numbers.texi 2013-06-20 14:15:42 +0000
+++ b/doc/lispref/numbers.texi 2013-12-20 18:41:31 +0000
@@ -354,9 +354,9 @@
limited range of integer values.
@end quotation
address@hidden = number-or-marker1 number-or-marker2
-This function tests whether its arguments are numerically equal, and
-returns @code{t} if so, @code{nil} otherwise.
address@hidden = number-or-marker &rest number-or-markers
+This function tests whether all its arguments are numerically equal,
+and returns @code{t} if so, @code{nil} otherwise.
@end defun
@defun eql value1 value2
@@ -371,26 +371,27 @@
returns @code{t} if they are not, and @code{nil} if they are.
@end defun
address@hidden < number-or-marker1 number-or-marker2
-This function tests whether its first argument is strictly less than
-its second argument. It returns @code{t} if so, @code{nil} otherwise.
address@hidden defun
-
address@hidden <= number-or-marker1 number-or-marker2
-This function tests whether its first argument is less than or equal
-to its second argument. It returns @code{t} if so, @code{nil}
-otherwise.
address@hidden defun
-
address@hidden > number-or-marker1 number-or-marker2
-This function tests whether its first argument is strictly greater
-than its second argument. It returns @code{t} if so, @code{nil}
-otherwise.
address@hidden defun
-
address@hidden >= number-or-marker1 number-or-marker2
-This function tests whether its first argument is greater than or
-equal to its second argument. It returns @code{t} if so, @code{nil}
address@hidden < 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.
address@hidden defun
+
address@hidden <= 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.
address@hidden defun
+
address@hidden > 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.
address@hidden defun
+
address@hidden >= 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.
@end defun
=== modified file 'etc/NEWS'
--- a/etc/NEWS 2013-12-20 16:37:10 +0000
+++ b/etc/NEWS 2013-12-20 18:41:31 +0000
@@ -862,6 +862,7 @@
*** `bool-vector-count-consecutive'
*** `bool-vector-count-population'
++++
** Comparison functions =, <, >, <=, >= now take many arguments.
** The second argument of `eval' can now be a lexical-environment.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] trunk r115649: Document that =, <, <=, >, >= now accept one or many arguments.,
Tassilo Horn <=