Synch to No Gnus 200403271441.
authoryamaoka <yamaoka>
Sat, 27 Mar 2004 14:46:59 +0000 (14:46 +0000)
committeryamaoka <yamaoka>
Sat, 27 Mar 2004 14:46:59 +0000 (14:46 +0000)
lisp/ChangeLog
lisp/message.el

index 03f97e1..9f70552 100644 (file)
@@ -1,3 +1,9 @@
+2004-03-27  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * message.el (message-exchange-point-and-mark): Use
+       message-mark-active-p.  Suggested by Jesper Harder
+       <harder@ifa.au.dk>.
+
 2004-03-26  Katsumi Yamaoka  <yamaoka@jpl.org>
 
        * message.el (message-exchange-point-and-mark): Don't activate
index 8c5ee64..cb90c8c 100644 (file)
@@ -7209,7 +7209,7 @@ which specify the range to operate on."
 (defun message-exchange-point-and-mark ()
   "Exchange point and mark, but don't activate region if it was inactive."
   (unless (prog1
-             (symbol-value 'mark-active)
+             (message-mark-active-p)
            (exchange-point-and-mark))
     (setq mark-active nil)))