]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/regex-emacs.c (regex_compile): Fix comments.
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 25 Mar 2019 15:47:57 +0000 (08:47 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 25 Mar 2019 16:03:29 +0000 (09:03 -0700)
src/regex-emacs.c

index 45b4f8107c71bc603ce83caf31de0144558f66fc..e7849157c85204d8771c7df1b30bf7586aaed97c 100644 (file)
@@ -1302,9 +1302,7 @@ struct range_table_work_area
   int bits;                    /* flag to record character classes */
 };
 
-/* Make sure that WORK_AREA can hold more N multibyte characters.
-   This is used only in set_image_of_range and set_image_of_range_1.
-   It expects WORK_AREA to be a pointer.
+/* Make sure that WORK_AREA can hold N more multibyte characters.
    If it can't get the space, it returns from the surrounding function.  */
 
 #define EXTEND_RANGE_TABLE(work_area, n)                               \
@@ -1732,7 +1730,7 @@ regex_compile (re_char *pattern, size_t size,
   /* Work area for range table of charset.  */
   struct range_table_work_area range_table_work;
 
-  /* If the object matched can contain multibyte characters.  */
+  /* If the regular expression is multibyte.  */
   bool multibyte = RE_MULTIBYTE_P (bufp);
 
   /* Nonzero if we have pushed down into a subpattern.  */