diff options
| author | Eli Zaretskii | 2024-08-31 08:14:13 -0400 |
|---|---|---|
| committer | Eli Zaretskii | 2024-08-31 08:14:13 -0400 |
| commit | d1f896b5f8918ecd29a7e8e7a835ffefb655ddb5 (patch) | |
| tree | f4b2b4761623cba15beea66428881cf45f2a2f4c /doc | |
| parent | fa00e4a10c82b87143a21d494cdc5cfee94d2d1a (diff) | |
| parent | 4b60267d832e0de209dd7a7665f7ed165091bd7d (diff) | |
| download | emacs-d1f896b5f8918ecd29a7e8e7a835ffefb655ddb5.tar.gz emacs-d1f896b5f8918ecd29a7e8e7a835ffefb655ddb5.zip | |
Merge from origin/emacs-30
4b60267d832 Make Python skeletons available in 'python-ts-mode' as well
62dcbfb776f Merge branch 'emacs-30' of git.savannah.gnu.org:/srv/git/...
1baa62b2ac1 ; * etc/NEWS: Fix typos.
dfcfaa0ef58 More accurate documentation of 'equal' in ELisp Reference
baaf97ce1a1 ; Fix some ungrammatical uses of "allows to"
# Conflicts:
# etc/NEWS
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/emacs/anti.texi | 2 | ||||
| -rw-r--r-- | doc/lispref/objects.texi | 9 |
2 files changed, 6 insertions, 5 deletions
diff --git a/doc/emacs/anti.texi b/doc/emacs/anti.texi index bf355ff1fea..97110dc8cdb 100644 --- a/doc/emacs/anti.texi +++ b/doc/emacs/anti.texi | |||
| @@ -71,7 +71,7 @@ tool bars on the bottom. For the same reasons @code{modifier-bar-mode} | |||
| 71 | is now gone. | 71 | is now gone. |
| 72 | 72 | ||
| 73 | @item | 73 | @item |
| 74 | The command @code{recover-file} no longer allows to display the diffs | 74 | The command @code{recover-file} no longer allows displaying the diffs |
| 75 | between a file and its auto-save file. You either want to recover a | 75 | between a file and its auto-save file. You either want to recover a |
| 76 | file or you don't; confusing users with a third alternative when they | 76 | file or you don't; confusing users with a third alternative when they |
| 77 | are anxious already by the possibility of losing precious edits is | 77 | are anxious already by the possibility of losing precious edits is |
diff --git a/doc/lispref/objects.texi b/doc/lispref/objects.texi index ec6ab8204d6..399a1d169c2 100644 --- a/doc/lispref/objects.texi +++ b/doc/lispref/objects.texi | |||
| @@ -2413,6 +2413,11 @@ the converse is not always true. | |||
| 2413 | @end group | 2413 | @end group |
| 2414 | @end example | 2414 | @end example |
| 2415 | 2415 | ||
| 2416 | The @code{equal} function recursively compares the contents of objects | ||
| 2417 | if they are integers, strings, markers, lists, cons cells, vectors, | ||
| 2418 | bool-vectors, byte-code function objects, char-tables, records, or font | ||
| 2419 | objects. | ||
| 2420 | |||
| 2416 | Comparison of strings is case-sensitive, but does not take account of | 2421 | Comparison of strings is case-sensitive, but does not take account of |
| 2417 | text properties---it compares only the characters in the strings. | 2422 | text properties---it compares only the characters in the strings. |
| 2418 | @xref{Text Properties}. Use @code{equal-including-properties} to also | 2423 | @xref{Text Properties}. Use @code{equal-including-properties} to also |
| @@ -2428,10 +2433,6 @@ same sequence of character codes and all these codes are in the range | |||
| 2428 | @end group | 2433 | @end group |
| 2429 | @end example | 2434 | @end example |
| 2430 | 2435 | ||
| 2431 | The @code{equal} function recursively compares the contents of objects | ||
| 2432 | if they are integers, strings, markers, vectors, bool-vectors, | ||
| 2433 | byte-code function objects, char-tables, records, or font objects. | ||
| 2434 | |||
| 2435 | If @var{object1} or @var{object2} contains symbols with position, | 2436 | If @var{object1} or @var{object2} contains symbols with position, |
| 2436 | @code{equal} treats them as if they were their bare symbols when | 2437 | @code{equal} treats them as if they were their bare symbols when |
| 2437 | @code{symbols-with-pos-enabled} is non-@code{nil}. Otherwise | 2438 | @code{symbols-with-pos-enabled} is non-@code{nil}. Otherwise |