1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-05-22 05:09:04 -07:00

; * src/fns.c (Fequal): Doc fix.

This commit is contained in:
Eli Zaretskii 2026-05-17 10:37:01 +03:00
parent f68e7a0a41
commit 1832a93547

View file

@ -2804,7 +2804,8 @@ DEFUN ("equal", Fequal, Sequal, 2, 2, 0,
doc: /* Return t if two Lisp objects have similar structure and contents.
They must have the same data type.
Conses are compared by comparing the cars and the cdrs.
Vectors and strings are compared element by element.
Vectors and strings are compared element by element (so text properties
of strings are ignored).
Numbers are compared via `eql', so integers do not equal floats.
\(Use `=' if you want integers and floats to be able to be equal.)
Symbols must match exactly. */)