* wl-draft.el (wl-draft-beginning-of-line): Keep the region
authorkaoru <kaoru>
Fri, 14 Jun 2002 03:07:59 +0000 (03:07 +0000)
committerkaoru <kaoru>
Fri, 14 Jun 2002 03:07:59 +0000 (03:07 +0000)
active in XEmacs.

wl/ChangeLog
wl/wl-draft.el

index 1820fe3..4dd899d 100644 (file)
@@ -1,3 +1,8 @@
+2002-06-14  TAKAHASHI Kaoru  <kaoru@kaisei.org>
+
+       * wl-draft.el (wl-draft-beginning-of-line): Keep the region
+       active in XEmacs.
+
 2002-06-13  KAMO Tomoyuki  <kamo@i-manage.co.jp>
 
        * wl-draft.el (wl-draft-beginning-of-line): Treat the header with
index b74d455..11f02da 100644 (file)
@@ -788,6 +788,8 @@ text was killed."
 (defun wl-draft-beginning-of-line (&optional n)
   "Move point to beginning of header value or to beginning of line."
   (interactive "p")
+  (when (boundp 'zmacs-region-stays)
+    (setq zmacs-region-stays t))
   (if (wl-draft-point-in-header-p)
       (let* ((here (point))
             (bol (progn (beginning-of-line n) (point)))