]> git.eshelyaron.com Git - emacs.git/commitdiff
(smiley-regexp-alist): Make regexps match
authorGerd Moellmann <gerd@gnu.org>
Tue, 12 Dec 2000 16:54:45 +0000 (16:54 +0000)
committerGerd Moellmann <gerd@gnu.org>
Tue, 12 Dec 2000 16:54:45 +0000 (16:54 +0000)
at the end of the buffer.
(smiley-region): In the loop, move to the end of the submatch
matching the smiley instead of using the end of the match
of the whole regexp.

lisp/gnus/smiley-ems.el

index 78d8007f7fa6a472a6c7b02c3d717423868eee10..4b54197c40e95f1535cf00fb895d7af30884b3f1 100644 (file)
@@ -52,9 +52,9 @@ This is in addition to the normal image search path."
 ;; The XEmacs version has a baroque, if not rococo, set of these.
 (defcustom smiley-regexp-alist
   ;; Perhaps :-) should be distinct -- it does appear in the Jargon File.
-  '(("\\([:;]-?)\\)\\W" 1 "smile.pbm")
-    ("\\(:-[/\\]\\)\\W" 1 "wry.pbm")
-    ("\\(:-[({]\\)\\W" 1 "frown.pbm"))
+  '(("\\([:;]-?)\\)\\(\\W\\|\\'\\)" 1 "smile.pbm")
+    ("\\(:-[/\\]\\)\\(\\W\\|\\'\\)" 1 "wry.pbm")
+    ("\\(:-[({]\\)\\(\\W\\|\\'\\)" 1 "frown.pbm"))
   "*A list of regexps to map smilies to images.
 The elements are (REGEXP MATCH FILE), where MATCH is the submatch in
 rgexp to replace with IMAGE.  IMAGE is the name of a PBM file in
@@ -123,7 +123,8 @@ which smileys to operate on and which images to use for them."
              (overlay-put overlay 'smiley t)
              (overlay-put overlay
                           'help-echo "mouse-2: toggle smilies in buffer")
-             (overlay-put overlay 'keymap smiley-mouse-map))))))
+             (overlay-put overlay 'keymap smiley-mouse-map)
+             (goto-char (match-end group)))))))
         (setq smiley-active t)))
 
 (defun smiley-toggle-buffer (&optional arg)