Mercurial > hg > xemacs-beta
comparison src/fns.c @ 4797:a5eca70cf401
Fix typo in last patch.
author | Stephen J. Turnbull <stephen@xemacs.org> |
---|---|
date | Sat, 02 Jan 2010 03:14:09 +0900 |
parents | c45fdd4e1858 |
children | 6ef8256a020a 19a72041c5ed 8431b52e43b1 |
comparison
equal
deleted
inserted
replaced
4796:c45fdd4e1858 | 4797:a5eca70cf401 |
---|---|
314 DEFUN ("compare-strings", Fcompare_strings, 6, 7, 0, /* | 314 DEFUN ("compare-strings", Fcompare_strings, 6, 7, 0, /* |
315 Compare the contents of two strings, maybe ignoring case. | 315 Compare the contents of two strings, maybe ignoring case. |
316 In string STR1, skip the first START1 characters and stop at END1. | 316 In string STR1, skip the first START1 characters and stop at END1. |
317 In string STR2, skip the first START2 characters and stop at END2. | 317 In string STR2, skip the first START2 characters and stop at END2. |
318 END1 and END2 default to the full lengths of the respective strings, | 318 END1 and END2 default to the full lengths of the respective strings, |
319 and arguments that are outside the string (negative start or ENDi | 319 and arguments that are outside the string (negative STARTi or ENDi |
320 greater than length) are coerced to 0 or string length as appropriate. | 320 greater than length) are coerced to 0 or string length as appropriate. |
321 | 321 |
322 Optional IGNORE-CASE non-nil means use case-insensitive comparison. | 322 Optional IGNORE-CASE non-nil means use case-insensitive comparison. |
323 Case is significant by default. | 323 Case is significant by default. |
324 | 324 |