diff options
author | Eli Zaretskii <eliz@gnu.org> | 2022-12-02 19:08:08 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2022-12-02 19:08:08 +0200 |
commit | 54633fcd761f8fa2d10a2a653361d6b7b6ff10f2 (patch) | |
tree | eb8586ed9c3b3618e0212792bcf5e3627b70e3a8 /lisp/subr.el | |
parent | 8413e9513830181994dba891bcd2c9bc570d7ec3 (diff) | |
download | emacs-54633fcd761f8fa2d10a2a653361d6b7b6ff10f2.tar.gz emacs-54633fcd761f8fa2d10a2a653361d6b7b6ff10f2.tar.bz2 emacs-54633fcd761f8fa2d10a2a653361d6b7b6ff10f2.zip |
; * lisp/subr.el (string-equal-ignore-case): Doc fix (bug#59779).
Diffstat (limited to 'lisp/subr.el')
-rw-r--r-- | lisp/subr.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/subr.el b/lisp/subr.el index cfce5b18c55..15662162798 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -5435,7 +5435,7 @@ and replace a sub-expression, e.g. (apply #'concat (nreverse matches))))) (defsubst string-equal-ignore-case (string1 string2) - "Like `string-equal', but case-insensitive. + "Compare STRING1 and STRING2 case-insensitively. Upper-case and lower-case letters are treated as equal. Unibyte strings are converted to multibyte for comparison." (declare (pure t) (side-effect-free t)) |