aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/fns.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/fns.c b/src/fns.c
index 7d120a90f78..e7424c34718 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -2193,8 +2193,10 @@ The PLIST is modified by side effects. */)
2193} 2193}
2194 2194
2195DEFUN ("eql", Feql, Seql, 2, 2, 0, 2195DEFUN ("eql", Feql, Seql, 2, 2, 0,
2196 doc: /* Return t if the two args are the same Lisp object. 2196 doc: /* Return t if the two args are `eq' or are indistinguishable numbers.
2197Floating-point numbers of equal value are `eql', but they may not be `eq'. */) 2197Floating-point values with the same sign, exponent and fraction are `eql'.
2198This differs from numeric comparison: (eql 0.0 -0.0) returns nil and
2199\(eql 0.0e+NaN 0.0e+NaN) returns t, whereas `=' does the opposite. */)
2198 (Lisp_Object obj1, Lisp_Object obj2) 2200 (Lisp_Object obj1, Lisp_Object obj2)
2199{ 2201{
2200 if (FLOATP (obj1)) 2202 if (FLOATP (obj1))
@@ -2208,8 +2210,8 @@ DEFUN ("equal", Fequal, Sequal, 2, 2, 0,
2208They must have the same data type. 2210They must have the same data type.
2209Conses are compared by comparing the cars and the cdrs. 2211Conses are compared by comparing the cars and the cdrs.
2210Vectors and strings are compared element by element. 2212Vectors and strings are compared element by element.
2211Numbers are compared by value, but integers cannot equal floats. 2213Numbers are compared via `eql', so integers do not equal floats.
2212 (Use `=' if you want integers and floats to be able to be equal.) 2214\(Use `=' if you want integers and floats to be able to be equal.)
2213Symbols must match exactly. */) 2215Symbols must match exactly. */)
2214 (Lisp_Object o1, Lisp_Object o2) 2216 (Lisp_Object o1, Lisp_Object o2)
2215{ 2217{