diff options
| author | Stefan Kangas | 2022-12-04 06:31:24 +0100 |
|---|---|---|
| committer | Stefan Kangas | 2022-12-04 06:31:24 +0100 |
| commit | be67cc276a95a97a329fa633fef686ba06c8e6d2 (patch) | |
| tree | d9cbaf71ae40c10c64937f8fc6f8547648a594c9 /src | |
| parent | 91a578ac9fea539a74840e93663a267e1a210881 (diff) | |
| parent | 96af584af6c8ea50f9cf871db9ffca91040fb85d (diff) | |
| download | emacs-be67cc276a95a97a329fa633fef686ba06c8e6d2.tar.gz emacs-be67cc276a95a97a329fa633fef686ba06c8e6d2.zip | |
Merge from origin/emacs-29
96af584af6c Fix comment-start-skip in tree-sitter modes (bug#59690)
520a4e12f8e ; * lisp/treesit.el (treesit-end-of-defun): Guard against...
2c4d92d30f6 ; * lisp/subr.el (posn-col-row): Revert inadvertent change.
6fb9a03cbdf ; Remove debugging leftover message
c5ba47c889e Speed up Unicode normalisation tests by a factor of 5
afa4fcb95b4 Fix "C-h k" when clicking on another frame
f6e2f30f394 ; Fix typos
bd58dcedfb9 Fix and expand tests broken by commit 2772ebe366 of 2022-...
a0dd9fdebe3 ; Add cross-reference to string-equal docstring
11c3c54d8ad Fix handling of relative directories in "--init-directory...
401f76cc3d6 Make sure 'user-emacs-directory' ends in a slash
Diffstat (limited to 'src')
| -rw-r--r-- | src/fns.c | 4 |
1 files changed, 3 insertions, 1 deletions
| @@ -334,7 +334,9 @@ Letter-case is significant, but text properties are ignored. */) | |||
| 334 | DEFUN ("string-equal", Fstring_equal, Sstring_equal, 2, 2, 0, | 334 | DEFUN ("string-equal", Fstring_equal, Sstring_equal, 2, 2, 0, |
| 335 | doc: /* Return t if two strings have identical contents. | 335 | doc: /* Return t if two strings have identical contents. |
| 336 | Case is significant, but text properties are ignored. | 336 | Case is significant, but text properties are ignored. |
| 337 | Symbols are also allowed; their print names are used instead. */) | 337 | Symbols are also allowed; their print names are used instead. |
| 338 | |||
| 339 | See also `string-equal-ignore-case'. */) | ||
| 338 | (register Lisp_Object s1, Lisp_Object s2) | 340 | (register Lisp_Object s1, Lisp_Object s2) |
| 339 | { | 341 | { |
| 340 | if (SYMBOLP (s1)) | 342 | if (SYMBOLP (s1)) |