comparison lisp/emacs-lisp/rx.el @ 77829:d858d80ae609

Nikolaj Schumacher <n_schumacher at web.de> (tiny change) (rx): Doc fix.
author Glenn Morris <rgm@gnu.org>
date Tue, 29 May 2007 00:52:08 +0000
parents 7a3f13e2dd57
children 935157c0b596 03548d4c812b 648e6c714c7d
comparison
equal deleted inserted replaced
77828:31144bf83234 77829:d858d80ae609
723 723
724 `point' 724 `point'
725 matches the empty string, but only at point. 725 matches the empty string, but only at point.
726 726
727 `word-start', `bow' 727 `word-start', `bow'
728 matches the empty string, but only at the beginning or end of a 728 matches the empty string, but only at the beginning of a word.
729 word.
730 729
731 `word-end', `eow' 730 `word-end', `eow'
732 matches the empty string, but only at the end of a word. 731 matches the empty string, but only at the end of a word.
733 732
734 `word-boundary' 733 `word-boundary'
737 736
738 `(not word-boundary)' 737 `(not word-boundary)'
739 `not-word-boundary' 738 `not-word-boundary'
740 matches the empty string, but not at the beginning or end of a 739 matches the empty string, but not at the beginning or end of a
741 word. 740 word.
741
742 `symbol-start'
743 matches the empty string, but only at the beginning of a symbol.
744
745 `symbol-end'
746 matches the empty string, but only at the end of a symbol.
742 747
743 `digit', `numeric', `num' 748 `digit', `numeric', `num'
744 matches 0 through 9. 749 matches 0 through 9.
745 750
746 `control', `cntrl' 751 `control', `cntrl'