diff options
| author | Eli Zaretskii | 2022-12-02 19:08:08 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2022-12-02 19:08:08 +0200 |
| commit | 54633fcd761f8fa2d10a2a653361d6b7b6ff10f2 (patch) | |
| tree | eb8586ed9c3b3618e0212792bcf5e3627b70e3a8 | |
| parent | 8413e9513830181994dba891bcd2c9bc570d7ec3 (diff) | |
| download | emacs-54633fcd761f8fa2d10a2a653361d6b7b6ff10f2.tar.gz emacs-54633fcd761f8fa2d10a2a653361d6b7b6ff10f2.zip | |
; * lisp/subr.el (string-equal-ignore-case): Doc fix (bug#59779).
| -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. | |||
| 5435 | (apply #'concat (nreverse matches))))) | 5435 | (apply #'concat (nreverse matches))))) |
| 5436 | 5436 | ||
| 5437 | (defsubst string-equal-ignore-case (string1 string2) | 5437 | (defsubst string-equal-ignore-case (string1 string2) |
| 5438 | "Like `string-equal', but case-insensitive. | 5438 | "Compare STRING1 and STRING2 case-insensitively. |
| 5439 | Upper-case and lower-case letters are treated as equal. | 5439 | Upper-case and lower-case letters are treated as equal. |
| 5440 | Unibyte strings are converted to multibyte for comparison." | 5440 | Unibyte strings are converted to multibyte for comparison." |
| 5441 | (declare (pure t) (side-effect-free t)) | 5441 | (declare (pure t) (side-effect-free t)) |