-
Stefan Monnier writes the following which would be a good addition. Remember that we need to provide Emacs 21, 22 and XEmacs compatibility. However, completion-boundaries may already be supported by these platforms.
From: Stefan Monnier
To: Bill Wohler
Subject: Completion in MH-E
Date: Wed, 25 Nov 2009 01:15:39 -0500
User-Agent: Gnus/5.13 (Gnus...
2009-11-26 05:40:29 UTC by wohler
-
Stefan has implemented #1 and #3. Thank you!
Only #2 remains.
2009-11-11 18:55:15 UTC by wohler
-
Stefan has implemented #1 and #3. Thank you!
Only #2 remains.
2009-11-11 18:55:11 UTC by wohler
-
I definitely agree and am bumping the priority a couple for me and Bill J and moving this over to feature requests. Thanks for the report!
2009-11-09 04:52:19 UTC by wohler
-
psg committed patchset 84 of module debian to the MH-E CVS repository, changing 2 files.
2009-09-01 18:13:00 UTC by psg
-
By coincidence, I was about to enter what I believe is the same bug. For me, it occurs in Emacs 22 in Aquamacs, because Aquamacs' delete-window does not preserve the current buffer. Sounds like Emacs 23 has the same (suboptimal) behavior. As an alternative perspective, here's my writeup:
Subject: mh-delete-yanked-msg-window-flag fails in Aquamacs
In Aquamacs Emacs, with...
2009-07-31 21:38:33 UTC by larryden
-
(04:12:18 PM) BillWohler1: Oh heck, took a quick look at the diff. I think set-buffer is old school. I believe our friends on emacs-devel would encourage us to use with-current-buffer instead. It handles errors and interrupts more gracefully. Indeed, we were explicitly asked to replace the set-buffer mh-temp-buffer calls with with-temp-buffer.
(04:17:59 PM) BillWohler1: Just asked emacs-devel...
2009-07-31 20:30:43 UTC by jchonig
-
I do not think that the two references to delete-windows-on in mh-folder.el are a problem.
2009-07-31 19:56:42 UTC by jchonig
-
In certain window configurations, mh-yank-cur-msg will fail in emacs 23 due to different semantics of delete-windows-on.
We are trying to access the mh-show-buffer buffer local variable in mh-sent-from-buffer.
The solution is easy, save mh-show-buffer (in show-buffer) earlier and avoid another reference.
Enclosed are the full diff and a diff-bw to make the changes obvious.
2009-07-31 19:54:23 UTC by jchonig
-
Oh, and this is the fix for the other problem.
Index: mh-show.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/mh-e/mh-show.el,v
retrieving revision 1.18
diff -u -u -r1.18 mh-show.el
--- mh-show.el 25 Jan 2009 18:32:30 -0000 1.18
+++ mh-show.el 29 Jul 2009 03:05:20 -0000
@@ -625,6 +625,7 @@
"l" mh-show-list-folders...
2009-07-29 03:05:40 UTC by jchonig