Gnus development mailing list
 help / color / mirror / Atom feed
* [0.97] `T #' oddness and `T ?' suggestion
@ 1999-10-09 18:37 Hannu Koivisto
  1999-11-06 20:41 ` Lars Magne Ingebrigtsen
  0 siblings, 1 reply; 3+ messages in thread
From: Hannu Koivisto @ 1999-10-09 18:37 UTC (permalink / raw)


Greetings,

Has anyone else experienced that `T #' marks articles as it should
but then throws cursor to a more or less random location?  Once it
threw the cursor to the beginning of the buffer and once few
articles forward from the article immediately after the thread I
marked.

A bit unrelated suggestion: what would you say about making `T ?' a
default binding for marking current thread's articles (forward from
the current one, just like `T #') as dormant?  I'd also like to see
something like `C-u T #' always mark _the whole thread_ instead of
threads's articles forward from the current one.  The same extends
to `T ?', of course.

-- 
Hannu


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [0.97] `T #' oddness and `T ?' suggestion
  1999-10-09 18:37 [0.97] `T #' oddness and `T ?' suggestion Hannu Koivisto
@ 1999-11-06 20:41 ` Lars Magne Ingebrigtsen
  1999-11-10  2:57   ` Rajappa Iyer
  0 siblings, 1 reply; 3+ messages in thread
From: Lars Magne Ingebrigtsen @ 1999-11-06 20:41 UTC (permalink / raw)


Hannu Koivisto <azure@iki.fi> writes:

> Has anyone else experienced that `T #' marks articles as it should
> but then throws cursor to a more or less random location? 

Yup.  Fix in Pterodactyl Gnus v0.98.1.

-- 
(domestic pets only, the antidote for overdose, milk.)
   larsi@gnus.org * Lars Magne Ingebrigtsen


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [0.97] `T #' oddness and `T ?' suggestion
  1999-11-06 20:41 ` Lars Magne Ingebrigtsen
@ 1999-11-10  2:57   ` Rajappa Iyer
  0 siblings, 0 replies; 3+ messages in thread
From: Rajappa Iyer @ 1999-11-10  2:57 UTC (permalink / raw)


Lars Magne Ingebrigtsen <larsi@gnus.org> writes:

> Hannu Koivisto <azure@iki.fi> writes:
> 
> > Has anyone else experienced that `T #' marks articles as it should
> > but then throws cursor to a more or less random location? 
> 
> Yup.  Fix in Pterodactyl Gnus v0.98.1.

In pick mode, this is still a problem.  The attached patch fixes it:

Index: gnus-salt.el
===================================================================
RCS file: /usr/local/cvsroot/gnus/lisp/gnus-salt.el,v
retrieving revision 5.7
diff -u -r5.7 gnus-salt.el
--- gnus-salt.el	1999/03/04 01:38:20	5.7
+++ gnus-salt.el	1999/11/10 02:39:32
@@ -189,7 +189,10 @@
   (when arg
     (gnus-pick-goto-article arg))
   (if gnus-thread-hide-subtree
-      (gnus-uu-mark-thread)
+      (progn
+	(save-excursion
+	  (gnus-uu-mark-thread))
+	(forward-line 1))
     (gnus-summary-mark-as-processable 1)))
 
 (defun gnus-pick-unmark-article-or-thread (&optional arg)
@@ -200,7 +203,8 @@
   (when arg
     (gnus-pick-goto-article arg))
   (if gnus-thread-hide-subtree
-      (gnus-uu-unmark-thread)
+      (save-excursion
+	(gnus-uu-unmark-thread))
     (gnus-summary-unmark-as-processable 1)))
 
 (defun gnus-pick-mouse-pick (e)


-- 
<rajappa@mindspring.com> a.k.a. Rajappa Iyer.		New York, New York.
	We're too busy mopping the floor to turn off the faucet.


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~1999-11-10  2:57 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1999-10-09 18:37 [0.97] `T #' oddness and `T ?' suggestion Hannu Koivisto
1999-11-06 20:41 ` Lars Magne Ingebrigtsen
1999-11-10  2:57   ` Rajappa Iyer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).