]> git.eshelyaron.com Git - emacs.git/commitdiff
(rx-constituents): Add symbol-start and symbol-end.
authorStefan Monnier <monnier@iro.umontreal.ca>
Fri, 25 Mar 2005 14:23:11 +0000 (14:23 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Fri, 25 Mar 2005 14:23:11 +0000 (14:23 +0000)
lisp/emacs-lisp/rx.el

index d4a10104eea8a23b2b05fe9f20f236b79e6ae1d5..49196f17ef0d285a43cb3fe8ebc7209ea3862698 100644 (file)
@@ -1,6 +1,6 @@
 ;;; rx.el --- sexp notation for regular expressions
 
-;; Copyright (C) 2001, 03, 2004  Free Software Foundation, Inc.
+;; Copyright (C) 2001, 2003, 2004, 2005  Free Software Foundation, Inc.
 
 ;; Author: Gerd Moellmann <gerd@gnu.org>
 ;; Maintainer: FSF
     (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,5 +971,5 @@ enclosed in `(and ...)'.
 \f
 (provide 'rx)
 
-;;; arch-tag: 12d01a63-0008-42bb-ab8c-1c7d63be370b
+;; arch-tag: 12d01a63-0008-42bb-ab8c-1c7d63be370b
 ;;; rx.el ends here