Andy Piper <andy(a)xemacs.org> writes:
Search for something. Hit C-a (or anything that used to make isearch
quit)
you jump back to where the search started. This is extremely annoying, I
have had to resort to clicking with the mouse to actually leave point
somewhere near where I want it.
Well, actually your patch broke the things. ;-)
The attached patch fixes the problem. As always, I don't
understand code related to display yet and I'm not sure the
following patch is the right one.
CVS version is pretty useless now, so I'm applying the patch
as an emergency fix until Andy or someone comes up with a
right fix.
2000-03-18 Yoshiki Hayashi <yoshiki(a)xemacs.org>
* window.c (Fselect_window): Undo 2000-03-17 change.
Index: window.c
===================================================================
RCS file: /usr/CVSroot/XEmacs/xemacs/src/window.c,v
retrieving revision 1.41.2.45
diff -u -r1.41.2.45 window.c
--- window.c 2000/03/17 17:34:42 1.41.2.45
+++ window.c 2000/03/18 08:28:11
@@ -3350,7 +3350,7 @@
error ("Trying to select non-leaf window");
w->use_time = make_int (++window_select_count);
-#if 0
+#if 1
/* See the comment in Fset_window_buffer. */
if (EQ (window, old_selected_window))
return window;
--
Yoshiki Hayashi