aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Kangas2022-12-04 06:31:24 +0100
committerStefan Kangas2022-12-04 06:31:24 +0100
commitbe67cc276a95a97a329fa633fef686ba06c8e6d2 (patch)
treed9cbaf71ae40c10c64937f8fc6f8547648a594c9 /src
parent91a578ac9fea539a74840e93663a267e1a210881 (diff)
parent96af584af6c8ea50f9cf871db9ffca91040fb85d (diff)
downloademacs-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.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/fns.c b/src/fns.c
index 7cc6d00afef..d8744c1a4de 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -334,7 +334,9 @@ Letter-case is significant, but text properties are ignored. */)
334DEFUN ("string-equal", Fstring_equal, Sstring_equal, 2, 2, 0, 334DEFUN ("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.
336Case is significant, but text properties are ignored. 336Case is significant, but text properties are ignored.
337Symbols are also allowed; their print names are used instead. */) 337Symbols are also allowed; their print names are used instead.
338
339See 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))