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 [lexbind]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/src/regex.c [lexbind]
Date: Mon, 25 Oct 2004 00:42:00 -0400

Index: emacs/src/regex.c
diff -c emacs/src/regex.c:1.176.2.6 emacs/src/regex.c:1.176.2.7
*** emacs/src/regex.c:1.176.2.6 Tue Jul  6 10:14:29 2004
--- emacs/src/regex.c   Mon Oct 25 04:22:27 2004
***************
*** 1283,1288 ****
--- 1283,1289 ----
      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.  */
***************
*** 2871,2877 ****
                          }
                      }
                    else if (!SAME_CHARSET_P (c, c1))
!                     FREE_STACK_RETURN (REG_ERANGE);
                  }
                else
                  /* Range from C to C. */
--- 2872,2878 ----
                          }
                      }
                    else if (!SAME_CHARSET_P (c, c1))
!                     FREE_STACK_RETURN (REG_ERANGEX);
                  }
                else
                  /* Range from C to C. */




reply via email to

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