comparison tests/automated/regexp-tests.el @ 1389:6355bae896e3

[xemacs-hg @ 2003-03-27 12:57:36 by stephent] use .Xresources not .Xdefaults <87adfhezt5.fsf@tleepslib.sk.tsukuba.ac.jp> regexp-tests fix
author stephent
date Thu, 27 Mar 2003 12:57:53 +0000
parents dff007bd492b
children aa15a2bbba1a
comparison
equal deleted inserted replaced
1388:aa75c11622fc 1389:6355bae896e3
247 (Assert (not (string-match "\\>" ""))) 247 (Assert (not (string-match "\\>" "")))
248 (Assert (not (string-match " \\<" " "))) 248 (Assert (not (string-match " \\<" " ")))
249 (Assert (not (string-match "\\> " " "))) 249 (Assert (not (string-match "\\> " " ")))
250 (Assert (not (string-match "a\\<" "a"))) 250 (Assert (not (string-match "a\\<" "a")))
251 (Assert (not (string-match "\\>a" "a"))) 251 (Assert (not (string-match "\\>a" "a")))
252 ;; Added Known-Bug 2002-09-09 252 ;; Added Known-Bug 2002-09-09 sjt
253 (Known-Bug-Expect-Failure 253 ;; Fixed bug 2003-03-21 sjt
254 (Assert (not (string-match "\\b" ""))) 254 (Assert (not (string-match "\\b" "")))
255 (Assert (not (string-match "\\b" " "))) 255 (Assert (not (string-match "\\b" " ")))
256 (Assert (not (string-match " \\b" " "))) 256 (Assert (not (string-match " \\b" " ")))
257 (Assert (not (string-match "\\b " " ")))) 257 (Assert (not (string-match "\\b " " ")))
258 258
259 ;; Character classes are broken in Mule as of 21.5.9 259 ;; Character classes are broken in Mule as of 21.5.9
260 ;; Added Known-Bug 2002-12-27 260 ;; Added Known-Bug 2002-12-27
261 (if (featurep 'mule) 261 (if (featurep 'mule)
262 ;; note: (int-to-char 65) => ?A 262 ;; note: (int-to-char 65) => ?A