[mew-int 01391] Re: [mew-int] mew-3.2: Problem while trying to answer read mails

Kazu Yamamoto ( 山本和彦 ) kazu at example.com
Thu Apr 10 16:05:15 JST 2003


> Now hit something like M-> to
> move to the end of the buffer.  This creates a region from the start
> of this paragraph to the end of the bufffer.  

I think your understanding is not correct.

M-> itself change the position of the marker. So, the region is not
what you expect. This is an Emacs's spec.

I don't like this. So, the following code exist in my .emacs:

(global-set-key "\e<" (lambda () (interactive) (goto-char (point-min))))
(global-set-key "\e>" 
		(lambda () (interactive)
		  (goto-char (point-max))
		  (if (and (mark t) (fboundp 'activate-region))
		      (activate-region))))

--Kazu



More information about the Mew-int mailing list