comparison lisp/gnus/smiley.el @ 161:28f395d8dc7a r20-3b7

Import from CVS: tag r20-3b7
author cvs
date Mon, 13 Aug 2007 09:42:26 +0200
parents 3bb7ccffb0c0
children 0132846995bd
comparison
equal deleted inserted replaced
160:1c55655d6702 161:28f395d8dc7a
51 51
52 ;; Notice the subtle differences in the regular expressions in the 52 ;; Notice the subtle differences in the regular expressions in the
53 ;; two alists below. 53 ;; two alists below.
54 54
55 (defcustom smiley-deformed-regexp-alist 55 (defcustom smiley-deformed-regexp-alist
56 '(("\\(\\^_?\\^;;;\\)\\W" 1 "Face_ase3.xbm") 56 '(("(?\\(\\^_?\\^;;;\\)\\()\\|\\W\\|[^\000-\177]\\)" 1 "Face_ase3.xbm")
57 ("\\(\\^_?\\^;;\\)\\W" 1 "Face_ase2.xbm") 57 ("(?\\(\\^_?\\^;;\\)\\()\\|\\W\\|[^\000-\177]\\)" 1 "Face_ase2.xbm")
58 ("\\(\\^_?\\^;\\)\\W" 1 "Face_ase.xbm") 58 ("(?\\(\\^_?\\^;\\)\\()\\|\\W\\|[^\000-\177]\\)" 1 "Face_ase.xbm")
59 ("\\(\\^_?\\^\\)\\W" 1 "Face_smile.xbm") 59 ("(\\(\\^_?\\^\\)\\()\\|\\W\\|[^\000-\177]\\)" 1 "Face_smile.xbm")
60 ("\\(\\;_;\\)\\W" 1 "Face_weep.xbm") 60 ("(\\(;_?;\\))" 1 "Face_weep.xbm")
61 ("\\(\\T_T\\)\\W" 1 "Face_weep.xbm") 61 ("(\\(T_?T\\))" 1 "Face_weep.xbm")
62 ("\\(:-*[<«]+\\)\\W" 1 "FaceAngry.xpm") 62 ("\\(:-*[<«]+\\)\\W" 1 "FaceAngry.xpm")
63 ("\\(:-+\\]+\\)\\W" 1 "FaceGoofy.xpm") 63 ("\\(:-+\\]+\\)\\W" 1 "FaceGoofy.xpm")
64 ("\\(:-*D\\)\\W" 1 "FaceGrinning.xpm") 64 ("\\(:-*D\\)\\W" 1 "FaceGrinning.xpm")
65 ("\\(:-*[)>}»]+\\)\\W" 1 "FaceHappy.xpm") 65 ("\\(:-*[)>}»]+\\)\\W" 1 "FaceHappy.xpm")
66 ("\\(:-*[/\\\"]\\)[^/]\\W" 1 "FaceIronic.xpm") 66 ("\\(:-*[/\\\"]\\)[^/]\\W" 1 "FaceIronic.xpm")
79 (integer :tag "Match") 79 (integer :tag "Match")
80 (string :tag "Image"))) 80 (string :tag "Image")))
81 :group 'smiley) 81 :group 'smiley)
82 82
83 (defcustom smiley-nosey-regexp-alist 83 (defcustom smiley-nosey-regexp-alist
84 '(("\\(:-+[<«]+\\)\\W" 1 "FaceAngry.xpm") 84 '(("(?\\(\\^_?\\^;;;\\)\\()\\|\\W\\|[^\000-\177]\\)" 1 "Face_ase3.xbm")
85 ("(?\\(\\^_?\\^;;\\)\\()\\|\\W\\|[^\000-\177]\\)" 1 "Face_ase2.xbm")
86 ("(?\\(\\^_?\\^;\\)\\()\\|\\W\\|[^\000-\177]\\)" 1 "Face_ase.xbm")
87 ("(\\(\\^_?\\^\\)\\()\\|\\W\\|[^\000-\177]\\)" 1 "Face_smile.xbm")
88 ("(\\(;_?;\\))" 1 "Face_weep.xbm")
89 ("(\\(T_?T\\))" 1 "Face_weep.xbm")
90 ("\\(:-+[<«]+\\)\\W" 1 "FaceAngry.xpm")
85 ("\\(:-+\\]+\\)\\W" 1 "FaceGoofy.xpm") 91 ("\\(:-+\\]+\\)\\W" 1 "FaceGoofy.xpm")
86 ("\\(:-+D\\)\\W" 1 "FaceGrinning.xpm") 92 ("\\(:-+D\\)\\W" 1 "FaceGrinning.xpm")
87 ("\\(:-+[}»]+\\)\\W" 1 "FaceHappy.xpm") 93 ("\\(:-+[}»]+\\)\\W" 1 "FaceHappy.xpm")
88 ("\\(:-*)+\\)\\W" 1 "FaceHappy.xpm") 94 ("\\(:-*)+\\)\\W" 1 "FaceHappy.xpm")
89 ("\\(:-+[/\\\"]+\\)\\W" 1 "FaceIronic.xpm") 95 ("\\(:-+[/\\\"]+\\)\\W" 1 "FaceIronic.xpm")