emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/regex.c [emacs-unicode-2]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/src/regex.c [emacs-unicode-2]
Date: Wed, 27 Oct 2004 02:06:14 -0400

Index: emacs/src/regex.c
diff -c emacs/src/regex.c:1.186.4.3 emacs/src/regex.c:1.186.4.4
*** emacs/src/regex.c:1.186.4.3 Mon Jun 28 07:29:23 2004
--- emacs/src/regex.c   Wed Oct 27 05:42:01 2004
***************
*** 1308,1313 ****
--- 1308,1314 ----
      gettext_noop ("Premature end of regular expression"), /* REG_EEND */
      gettext_noop ("Regular expression too big"), /* REG_ESIZE */
      gettext_noop ("Unmatched ) or \\)"), /* REG_ERPAREN */
+     gettext_noop ("Range striding over charsets") /* REG_ERANGEX  */
    };
  
  /* Avoiding alloca during matching, to placate r_alloc.  */
***************
*** 2925,2931 ****
                    if (c > c1)
                      {
                        if (syntax & RE_NO_EMPTY_RANGES)
!                         FREE_STACK_RETURN (REG_ERANGE);
                        /* Else, repeat the loop.  */
                      }
                  }
--- 2926,2932 ----
                    if (c > c1)
                      {
                        if (syntax & RE_NO_EMPTY_RANGES)
!                         FREE_STACK_RETURN (REG_ERANGEX);
                        /* Else, repeat the loop.  */
                      }
                  }




reply via email to

[Prev in Thread] Current Thread [Next in Thread]