/[emacs]/emacs/src/regex.c
ViewVC logotype

Diff of /emacs/src/regex.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.186.4.3 by miles, Mon Jun 28 07:29:23 2004 UTC revision 1.186.4.4 by miles, Wed Oct 27 05:42:01 2004 UTC
# Line 1308  static const char *re_error_msgid[] = Line 1308  static const char *re_error_msgid[] =
1308      gettext_noop ("Premature end of regular expression"), /* REG_EEND */      gettext_noop ("Premature end of regular expression"), /* REG_EEND */
1309      gettext_noop ("Regular expression too big"), /* REG_ESIZE */      gettext_noop ("Regular expression too big"), /* REG_ESIZE */
1310      gettext_noop ("Unmatched ) or \\)"), /* REG_ERPAREN */      gettext_noop ("Unmatched ) or \\)"), /* REG_ERPAREN */
1311        gettext_noop ("Range striding over charsets") /* REG_ERANGEX  */
1312    };    };
1313    
1314  /* Avoiding alloca during matching, to placate r_alloc.  */  /* Avoiding alloca during matching, to placate r_alloc.  */
# Line 2925  regex_compile (pattern, size, syntax, bu Line 2926  regex_compile (pattern, size, syntax, bu
2926                      if (c > c1)                      if (c > c1)
2927                        {                        {
2928                          if (syntax & RE_NO_EMPTY_RANGES)                          if (syntax & RE_NO_EMPTY_RANGES)
2929                            FREE_STACK_RETURN (REG_ERANGE);                            FREE_STACK_RETURN (REG_ERANGEX);
2930                          /* Else, repeat the loop.  */                          /* Else, repeat the loop.  */
2931                        }                        }
2932                    }                    }

Legend:
Removed from v.1.186.4.3  
changed lines
  Added in v.1.186.4.4

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26