(gnus-article-followup-with-original)
authorJesper Harder <harder@ifa.au.dk>
Mon, 17 May 2004 23:12:31 +0000 (23:12 +0000)
committerJesper Harder <harder@ifa.au.dk>
Mon, 17 May 2004 23:12:31 +0000 (23:12 +0000)
(gnus-article-reply-with-original): gnus-mark-active-p ->
gnus-region-active-p.

lisp/ChangeLog
lisp/gnus-art.el

index 02ca1d5..9c557bf 100644 (file)
@@ -1,3 +1,9 @@
+2004-05-18  Jesper Harder  <harder@ifa.au.dk>
+
+       * gnus-art.el (gnus-article-followup-with-original)
+       (gnus-article-reply-with-original): gnus-mark-active-p ->
+       gnus-region-active-p.
+
 2004-05-17  Teodor Zlatanov  <tzz@lifelogs.com>
 
        * spam.el (spam-summary-prepare-exit): fix messages, so they show
index 923b503..da85a35 100644 (file)
@@ -5236,7 +5236,7 @@ the entire article will be yanked."
   (interactive "P")
   (let ((article (cdr gnus-article-current))
        contents)
-    (if (not (gnus-mark-active-p))
+    (if (not (gnus-region-active-p))
        (with-current-buffer gnus-summary-buffer
          (gnus-summary-reply (list (list article)) wide))
       (setq contents (buffer-substring (point) (mark t)))
@@ -5255,7 +5255,7 @@ the entire article will be yanked."
   (interactive)
   (let ((article (cdr gnus-article-current))
        contents)
-      (if (not (gnus-mark-active-p))
+      (if (not (gnus-region-active-p))
          (with-current-buffer gnus-summary-buffer
            (gnus-summary-followup (list (list article))))
        (setq contents (buffer-substring (point) (mark t)))