comparison lisp/emacs-lisp/sregex.el @ 77901:a794fbd6b0c9

(sregexq): Fix doc string quoting.
author Chong Yidong <cyd@stupidchicken.com>
date Mon, 04 Jun 2007 23:51:01 +0000
parents 0ca7455cc45c
children 935157c0b596 70bf32a0f523
comparison
equal deleted inserted replaced
77900:2e526dc9c6b6 77901:a794fbd6b0c9
434 - the symbol `not-word-boundary' 434 - the symbol `not-word-boundary'
435 Stands for \"\\\\B\", matching the empty string not at the beginning 435 Stands for \"\\\\B\", matching the empty string not at the beginning
436 or end of a word. 436 or end of a word.
437 437
438 - the symbol `bow' 438 - the symbol `bow'
439 Stands for \"\\\\\\=<\", matching the empty string at the beginning of a 439 Stands for \"\\\\=\\<\", matching the empty string at the beginning of a
440 word. 440 word.
441 441
442 - the symbol `eow' 442 - the symbol `eow'
443 Stands for \"\\\\\\=>\", matching the empty string at the end of a word. 443 Stands for \"\\\\=\\>\", matching the empty string at the end of a word.
444 444
445 - the symbol `wordchar' 445 - the symbol `wordchar'
446 Stands for the regex \"\\\\w\", matching a word-constituent character 446 Stands for the regex \"\\\\w\", matching a word-constituent character
447 (as determined by the current syntax table) 447 (as determined by the current syntax table)
448 448