Re: filling bug in text-mode

2005-10-14 Thread Juri Linkov
> We're talking about what sentence-end should match; that is to say, > where M-e should stop. > > It should stop after an ellipsis if the ellipsis is followed by two > spaces or a newline. An ellipsis followed by just one space is not > the end of a sentence. > > As for filling, it does not break

Re: filling bug in text-mode

2005-10-11 Thread Richard M. Stallman
IIRC the problem is what to do when filling foo bar... baz Should it turn into foo bar... baz or foo bar... baz It should be the latter, because that preserves the fact that it counts as a sentence end. _

Re: filling bug in text-mode

2005-10-11 Thread Richard M. Stallman
> The patch below fixes the bug. It assumes that more than one > successive periods should allow breaking even if they are > followed by just one space. > > That's not correct--it SHOULD demand two spaces or a newline, after > three periods, just as it does aft

Re: filling bug in text-mode

2005-10-11 Thread Stefan Monnier
>> The patch below fixes the bug. It assumes that more than one >> successive periods should allow breaking even if they are followed >> by just one space. >> >> That's not correct--it SHOULD demand two spaces or a newline, >> after three periods, just as it does after one period. > Why? A sing

Re: filling bug in text-mode

2005-10-11 Thread David Kastrup
"Richard M. Stallman" <[EMAIL PROTECTED]> writes: > The patch below fixes the bug. It assumes that more than one > successive periods should allow breaking even if they are followed > by just one space. > > That's not correct--it SHOULD demand two spaces or a newline, > after three pe

Re: filling bug in text-mode

2005-10-10 Thread Werner LEMBERG
> The patch below fixes the bug. It assumes that more than one > successive periods should allow breaking even if they are > followed by just one space. > > That's not correct--it SHOULD demand two spaces or a newline, after > three periods, just as it does after one period. This wa

Re: filling bug in text-mode

2005-10-10 Thread Richard M. Stallman
The patch below fixes the bug. It assumes that more than one successive periods should allow breaking even if they are followed by just one space. That's not correct--it SHOULD demand two spaces or a newline, after three periods, just as it does after one period. ___

Re: filling bug in text-mode

2005-10-10 Thread Werner LEMBERG
> The patch below fixes the bug. It assumes that more than one > successive periods should allow breaking even if they are followed > by just one space. Thanks! Will you check this in? Werner ___ Emacs-devel mailing list Emacs-devel@gnu.org ht

Re: filling bug in text-mode

2005-10-09 Thread Juri Linkov
> Should the sentence commands stop also after three question marks??? > And sentences can also end with three exclamation marks!!! > > Yes, they can--and the sentence commands already do stop there. > I just tried this test case: > > foo??? bar!!! lose. That means there is nothing wro

Re: filling bug in text-mode

2005-10-09 Thread Richard M. Stallman
Should the sentence commands stop also after three question marks??? And sentences can also end with three exclamation marks!!! Yes, they can--and the sentence commands already do stop there. I just tried this test case: foo??? bar!!! lose. __

Re: filling bug in text-mode

2005-10-08 Thread Juri Linkov
> One solution is to fix the regexp in `sentence-end' to match three > periods. > > I think that is the correct fix, because the sentence commands > _should_ stop after three periods (when followed by two spaces > or a newline). Should the sentence commands stop also after three question m

Re: filling bug in text-mode

2005-10-08 Thread Richard M. Stallman
One solution is to fix the regexp in `sentence-end' to match three periods. I think that is the correct fix, because the sentence commands _should_ stop after three periods (when followed by two spaces or a newline). It is a bug if they don't stop there. ___

Re: filling bug in text-mode

2005-10-07 Thread Juri Linkov
> Consider the following text in text-mode: > > It's not necessary to buy a new computer just for a DVD > drive... Today, the most important part of a computer is the amount > of RAM -- the more, the better. It's far more important than a fast > CPU. > > Now set the column width to 70 c