From xemacs-m  Wed Mar  5 14:00:24 1997
Received: from dres.elam.org (dres@cola47.scsn.net [206.25.247.47])
	by xemacs.org (8.8.5/8.8.5) with ESMTP id OAA05774
	for <xemacs-beta@xemacs.org>; Wed, 5 Mar 1997 14:00:11 -0600 (CST)
Received: (from dres@localhost)
	by dres.elam.org (8.8.5/8.8.5) id OAA29847;
	Wed, 5 Mar 1997 14:58:10 -0500
To: XEmacs Beta List <xemacs-beta@xemacs.org>
Subject: gnus smileys test
X-Url: http://www.cs.sc.edu/~moss
X-Organization: Dres Computer Services
X-No-Archive: true
X-Face:  "R3Ms&!j++.]J8DwisON-l7#S<Jw[MsP|I<K?28b~f-<w^vjeAQ-k@$-Az>OloY'V?!^-!2
 9G+7Z7OzClzr2{3e<RFn%f*t%B<*|sT->ni9BN\pzkTp<dg6+lOtI-rg*]Fjgr0n.=ChFX:_+T7fKT
 *Z[}xvSK"jV~QH7*v}xZ,1rlb+Ro`,)#2Econ*g^>}ehc,\AhKBZ\Sf/HVG+p\*?'(&ct2w6Fr:w9m
 o|9R&.D-)1]:&sN-6o'\`7W${f1$2BCy6qSl&._{ILYCZ?X-[?M!](N
Mime-Version: 1.0 (generated by tm-edit 7.105)
Content-Type: multipart/mixed;
 boundary="Multipart_Wed_Mar__5_14:58:09_1997-1"
Content-Transfer-Encoding: 7bit
From: James LewisMoss <dres@scsn.net>
Date: 05 Mar 1997 14:58:09 -0500
Message-ID: <hhvi76157e.fsf@dres.elam.org>
Lines: 43
X-Mailer: Gnus v5.4.17/XEmacs 20.1

--Multipart_Wed_Mar__5_14:58:09_1997-1
Content-Type: message/rfc822


Test smileys:  :-] :-o :-) ;-) :-\ :-| :-d :-P 8-| :-(

/usr/local/bin:/usr/bin:/bin:/.

I noticed in someone's screen shot a little while back that they had
smilies in their mail reading buffer.  I thought how cute and went
looking for it. ;)

Found it. Only needs one small patch not to make that path statement
above have smilies at every :/ (just the last now).  It looks like it
was just accidentally left out of the file since every other regexp is
written this way.

Jim

-- 
@James LewisMoss                 | moss@cs.sc.edu | Blessed Be!
@    http://www.cs.sc.edu/~moss  | dres@scsn.net  | Linux is cool!
@"Argue for your limitations and sure enough, they're yours." Bach


--Multipart_Wed_Mar__5_14:58:09_1997-1
Content-Type: application/octet-stream; type=patch
Content-Disposition: attachment; filename="smil.patch"
Content-Transfer-Encoding: 7bit

--- ./smiley.el.old	Tue Mar  4 17:02:49 1997
+++ ./smiley.el	Tue Mar  4 17:02:59 1997
@@ -56,7 +56,7 @@
     ("\\(:-+\\]+\\)\\W" 1 "FaceGoofy.xpm")
     ("\\(:-*D\\)\\W" 1 "FaceGrinning.xpm")
     ("\\(:-*[)>}]+\\)\\W" 1 "FaceHappy.xpm")
-    ("\\(:-*[/\\\"]\\)[^/]" 1 "FaceIronic.xpm")
+    ("\\(:-*[/\\\"]\\)[^/]\\W" 1 "FaceIronic.xpm")
     ("\\([8|]-*[|Oo%]\\)\\W" 1 "FaceKOed.xpm")
     ("\\([:|]-*#+\\)\\W" 1 "FaceNyah.xpm")
     ("\\(:-*[({]+\\)\\W" 1 "FaceSad.xpm")

--Multipart_Wed_Mar__5_14:58:09_1997-1--

