Gnus development mailing list
 help / color / mirror / Atom feed
* paragraph-{start,separate}
@ 1997-10-08 16:07 Lars Balker Rasmussen
  1997-10-12 21:59 ` paragraph-{start,separate} Lars Magne Ingebrigtsen
  0 siblings, 1 reply; 6+ messages in thread
From: Lars Balker Rasmussen @ 1997-10-08 16:07 UTC (permalink / raw)


In gnus-5.4.67:

  (setq paragraph-start (concat (regexp-quote mail-header-separator)
				"$\\|[ \t]*[-_][-_][-_]+$\\|"
				"-- $\\|"
				paragraph-start))
  (setq paragraph-separate (concat (regexp-quote mail-header-separator)
				   "$\\|[ \t]*[-_][-_][-_]+$\\|"
				   "-- $\\|"
				   paragraph-separate))

In qgnus-0.12:

  (setq paragraph-start
	(concat (regexp-quote mail-header-separator)
		"$\\|[ \t]*[-_][-_][-_]+$\\|"
		"-- $\\|"
		;;!!! Uhm... shurely this can't be right.
		"[> " (regexp-quote message-yank-prefix) "]+$\\|"
		paragraph-start))
  (setq paragraph-separate
	(concat (regexp-quote mail-header-separator)
		"$\\|[ \t]*[-_][-_][-_]+$\\|"
		"-- $\\|"
		"[> " (regexp-quote message-yank-prefix) "]+$\\|"
		paragraph-separate))

Why oh why?  I've gotten SO used to jump back between start of quoted
text and end of same using forward-paragraph and backward-paragraph it's
not even funny.  Why would I want to consider all the paragraphs in
quoted text?
-- 
Lars Balker Rasmussen, Software Engineer, Mjolner Informatics ApS
lbr@mjolner.dk


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

* Re: paragraph-{start,separate}
  1997-10-08 16:07 paragraph-{start,separate} Lars Balker Rasmussen
@ 1997-10-12 21:59 ` Lars Magne Ingebrigtsen
  1997-10-13  8:22   ` paragraph-{start,separate} Lars Balker Rasmussen
  0 siblings, 1 reply; 6+ messages in thread
From: Lars Magne Ingebrigtsen @ 1997-10-12 21:59 UTC (permalink / raw)


Lars Balker Rasmussen <lbr@mjolner.dk> writes:

> Why oh why?  I've gotten SO used to jump back between start of quoted
> text and end of same using forward-paragraph and backward-paragraph it's
> not even funny.

Uhm...  `C-x C-x' does that.

> Why would I want to consider all the paragraphs in quoted text?

Because this makes `M-q' work on filled text.

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


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

* Re: paragraph-{start,separate}
  1997-10-12 21:59 ` paragraph-{start,separate} Lars Magne Ingebrigtsen
@ 1997-10-13  8:22   ` Lars Balker Rasmussen
  1997-10-20 21:10     ` paragraph-{start,separate} Lars Magne Ingebrigtsen
  0 siblings, 1 reply; 6+ messages in thread
From: Lars Balker Rasmussen @ 1997-10-13  8:22 UTC (permalink / raw)


Lars Magne Ingebrigtsen <larsi@gnus.org> writes:
> > Why oh why?  I've gotten SO used to jump back between start of quoted
> > text and end of same using forward-paragraph and backward-paragraph it's
> > not even funny.
> 
> Uhm...  `C-x C-x' does that.

Uhm, at first, yes.  But after editing the text for some time, the mark
_will_ have moved!  How to skip forwards or backwards over quoted text
now?

> Because this makes `M-q' work on filled text.

Well, doesn't filladapt have the same property?
-- 
Lars Balker Rasmussen, Software Engineer, Mjolner Informatics ApS
lbr@mjolner.dk


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

* Re: paragraph-{start,separate}
  1997-10-13  8:22   ` paragraph-{start,separate} Lars Balker Rasmussen
@ 1997-10-20 21:10     ` Lars Magne Ingebrigtsen
  1997-10-21  8:15       ` paragraph-{start,separate} Lars Balker Rasmussen
  0 siblings, 1 reply; 6+ messages in thread
From: Lars Magne Ingebrigtsen @ 1997-10-20 21:10 UTC (permalink / raw)


Lars Balker Rasmussen <lbr@mjolner.dk> writes:

> > Uhm...  `C-x C-x' does that.
> 
> Uhm, at first, yes.  But after editing the text for some time, the mark
> _will_ have moved!  How to skip forwards or backwards over quoted text
> now?

You should delete the quoted text, not move over it.  :-)

> > Because this makes `M-q' work on filled text.
> 
> Well, doesn't filladapt have the same property?

Uhm...  I don't quite follow.

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


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

* Re: paragraph-{start,separate}
  1997-10-20 21:10     ` paragraph-{start,separate} Lars Magne Ingebrigtsen
@ 1997-10-21  8:15       ` Lars Balker Rasmussen
  1997-10-24 22:48         ` paragraph-{start,separate} Lars Magne Ingebrigtsen
  0 siblings, 1 reply; 6+ messages in thread
From: Lars Balker Rasmussen @ 1997-10-21  8:15 UTC (permalink / raw)


Lars Magne Ingebrigtsen <larsi@gnus.org> writes:
> You should delete the quoted text, not move over it.  :-)

Yeah, yeah.

> > Well, doesn't filladapt have the same property?
> 
> Uhm...  I don't quite follow.

filladapt.el understands quoted text, and hasn't removed the ability to
jump over quoted blocks.
-- 
Lars Balker Rasmussen, Software Engineer, Mjolner Informatics ApS
lbr@mjolner.dk


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

* Re: paragraph-{start,separate}
  1997-10-21  8:15       ` paragraph-{start,separate} Lars Balker Rasmussen
@ 1997-10-24 22:48         ` Lars Magne Ingebrigtsen
  0 siblings, 0 replies; 6+ messages in thread
From: Lars Magne Ingebrigtsen @ 1997-10-24 22:48 UTC (permalink / raw)


Lars Balker Rasmussen <lbr@mjolner.dk> writes:

> filladapt.el understands quoted text, and hasn't removed the ability to
> jump over quoted blocks.

Right.  Then filladapt users should set those two variables to
something else.

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


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

end of thread, other threads:[~1997-10-24 22:48 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1997-10-08 16:07 paragraph-{start,separate} Lars Balker Rasmussen
1997-10-12 21:59 ` paragraph-{start,separate} Lars Magne Ingebrigtsen
1997-10-13  8:22   ` paragraph-{start,separate} Lars Balker Rasmussen
1997-10-20 21:10     ` paragraph-{start,separate} Lars Magne Ingebrigtsen
1997-10-21  8:15       ` paragraph-{start,separate} Lars Balker Rasmussen
1997-10-24 22:48         ` paragraph-{start,separate} Lars Magne Ingebrigtsen

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).