Path: utzoo!telly!philmtl!uunet!tut.cis.ohio-state.edu!ALEXANDER.BBN.COM!gildea From: gildea@ALEXANDER.BBN.COM (Stephen Gildea) Newsgroups: gnu.emacs.bug Subject: Re: emacs bug in M-e Message-ID: <8912151625.AA02560@life.ai.mit.edu> Date: 15 Dec 89 16:23:38 GMT Sender: daemon@tut.cis.ohio-state.edu Distribution: gnu Organization: GNUs Not Usenet Lines: 9 The problem is that the sentence-end regexp doesn't allow white space at the end of a line. The following definition fixes this. < Stephen (defconst sentence-end (purecopy "[.?!][]\"')}]*\\([ \t]*$\\|\t\\| \\)[ \t\n]*") "\ *Regexp describing the end of a sentence. All paragraph boundaries also end sentences, regardless.")