emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/emacs-lisp/rx.el


From: Stefan Monnier
Subject: [Emacs-diffs] Changes to emacs/lisp/emacs-lisp/rx.el
Date: Fri, 25 Mar 2005 09:23:11 -0500

Index: emacs/lisp/emacs-lisp/rx.el
diff -c emacs/lisp/emacs-lisp/rx.el:1.13 emacs/lisp/emacs-lisp/rx.el:1.14
*** emacs/lisp/emacs-lisp/rx.el:1.13    Fri Apr 23 21:25:58 2004
--- emacs/lisp/emacs-lisp/rx.el Fri Mar 25 14:23:11 2005
***************
*** 1,6 ****
  ;;; rx.el --- sexp notation for regular expressions
  
! ;; Copyright (C) 2001, 03, 2004  Free Software Foundation, Inc.
  
  ;; Author: Gerd Moellmann <address@hidden>
  ;; Maintainer: FSF
--- 1,6 ----
  ;;; rx.el --- sexp notation for regular expressions
  
! ;; Copyright (C) 2001, 2003, 2004, 2005  Free Software Foundation, Inc.
  
  ;; Author: Gerd Moellmann <address@hidden>
  ;; Maintainer: FSF
***************
*** 169,174 ****
--- 169,176 ----
      (eow              . word-end)     ; SRE
      (word-boundary    . "\\b")
      (not-word-boundary        . "\\B")        ; sregex
+     (symbol-start       . "\\_<")
+     (symbol-end         . "\\_>")
      (syntax           . (rx-syntax 1 1))
      (not-syntax               . (rx-not-syntax 1 1)) ; sregex
      (category         . (rx-category 1 1 rx-check-category))
***************
*** 969,973 ****
  
  (provide 'rx)
  
! ;;; arch-tag: 12d01a63-0008-42bb-ab8c-1c7d63be370b
  ;;; rx.el ends here
--- 971,975 ----
  
  (provide 'rx)
  
! ;; arch-tag: 12d01a63-0008-42bb-ab8c-1c7d63be370b
  ;;; rx.el ends here




reply via email to

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