]> git.eshelyaron.com Git - emacs.git/commitdiff
; Don't use non-ASCII quotes in comments
authorEli Zaretskii <eliz@gnu.org>
Sun, 30 Jul 2017 19:42:18 +0000 (22:42 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sun, 30 Jul 2017 19:42:18 +0000 (22:42 +0300)
* src/regex.h:
* src/regex.c (re_wctype_parse): Don't use non-ASCII quotes in
comments.

src/regex.c
src/regex.h

index fb48765c96cb27d90b4e59a0bf0ff524958285fa..0dbb47309e486039f09b0623548cdb0e29845a52 100644 (file)
@@ -1942,7 +1942,7 @@ struct range_table_work_area
    returned.  If name is not a valid character class name zero, or RECC_ERROR,
    is returned.
 
-   Otherwise, if *strp doesnt begin with "[:name:]", -1 is returned.
+   Otherwise, if *strp doesn't begin with "[:name:]", -1 is returned.
 
    The function can be used on ASCII and multibyte (UTF-8-encoded) strings.
  */
@@ -1954,8 +1954,8 @@ re_wctype_parse (const unsigned char **strp, unsigned limit)
   if (limit < 4 || beg[0] != '[' || beg[1] != ':')
     return -1;
 
-  beg += 2;  /* skip opening ‘[:’ */
-  limit -= 3;  /* opening ‘[:’ and half of closing ‘:]’; --limit handles rest */
+  beg += 2;  /* skip opening "[:" */
+  limit -= 3;  /* opening "[:" and half of closing ":]"; --limit handles rest */
   for (it = beg; it[0] != ':' || it[1] != ']'; ++it)
     if (!--limit)
       return -1;
@@ -1985,7 +1985,7 @@ re_wctype_parse (const unsigned char **strp, unsigned limit)
            2 [:cntrl:]
            1 [:ff:]
 
-     If you update this list, consider also updating chain of ored conditions
+     If you update this list, consider also updating chain of or'ed conditions
      in execute_charset function.
    */
 
index 1d439de259ccec834c543e68780c4aece5ee58ad..5e3a79763ec73f17b25256b98a2124d8e012717e 100644 (file)
@@ -21,7 +21,7 @@
 #define _REGEX_H 1
 
 #if defined emacs && (defined _REGEX_RE_COMP || defined _LIBC)
-/* Were not defining re_set_syntax and using a different prototype of
+/* We're not defining re_set_syntax and using a different prototype of
    re_compile_pattern when building Emacs so fail compilation early with
    a (somewhat helpful) error message when conflict is detected. */
 # error "_REGEX_RE_COMP nor _LIBC can be defined if emacs is defined."