diff options
| author | Stefan Kangas | 2022-12-03 11:29:37 +0100 |
|---|---|---|
| committer | Stefan Kangas | 2022-12-03 11:32:23 +0100 |
| commit | a0dd9fdebe3baaccdbda428df428f696ee38356d (patch) | |
| tree | 84d28eae1edb9def0c9b44a0edcdcee1b78005ec /src | |
| parent | 11c3c54d8ade69003f441918b607f073e6fa39f1 (diff) | |
| download | emacs-a0dd9fdebe3baaccdbda428df428f696ee38356d.tar.gz emacs-a0dd9fdebe3baaccdbda428df428f696ee38356d.zip | |
; Add cross-reference to string-equal docstring
* lisp/subr.el (string-equal-ignore-case):
* src/fns.c (Fstring_equal): Doc fix; add cross-references.
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)) |