# HG changeset patch # User Paul Eggert # Date 1328684868 28800 # Node ID e89e36252e490c954e363532a9cd437a052b8d8b # Parent 5290dc20c28b82c81103f12b5c92884aa0b58cce regex: spelling fix * lib/regexec.c: spelling fix diff -r 5290dc20c28b -r e89e36252e49 ChangeLog --- a/ChangeLog Tue Feb 07 23:06:43 2012 -0800 +++ b/ChangeLog Tue Feb 07 23:07:48 2012 -0800 @@ -1,5 +1,8 @@ 2012-02-07 Paul Eggert + regex: spelling fix + * lib/regexec.c: spelling fix + regex: rely on stdint.h for SIZE_MAX * lib/regex_internal.h (SIZE_MAX): Remove; stdint.h supplies this now. diff -r 5290dc20c28b -r e89e36252e49 lib/regexec.c --- a/lib/regexec.c Tue Feb 07 23:06:43 2012 -0800 +++ b/lib/regexec.c Tue Feb 07 23:07:48 2012 -0800 @@ -4146,7 +4146,7 @@ <= pstr->bufs_len, 0)) return REG_ESPACE; - /* Double the lengthes of the buffers. */ + /* Double the lengths of the buffers. */ ret = re_string_realloc_buffers (pstr, MIN (pstr->len, pstr->bufs_len * 2)); if (BE (ret != REG_NOERROR, 0)) return ret;