]> git.eshelyaron.com Git - emacs.git/commitdiff
(fill-single-word-nobreak-p): Use `sentence-end'.
authorJuri Linkov <juri@jurta.org>
Fri, 30 Dec 2005 05:59:16 +0000 (05:59 +0000)
committerJuri Linkov <juri@jurta.org>
Fri, 30 Dec 2005 05:59:16 +0000 (05:59 +0000)
lisp/textmodes/fill.el

index ce95c6f026febdc03ca225dcf3ddcfe942c7c4c9..48defb7d786373cf66cb68c95abd50f9ff72574f 100644 (file)
@@ -291,12 +291,13 @@ act as a paragraph-separator."
 
 (defun fill-single-word-nobreak-p ()
   "Don't break a line after the first or before the last word of a sentence."
-  (or (looking-at "[ \t]*\\sw+[ \t]*[.?!:][ \t]*$")
+  (or (looking-at (concat "[ \t]*\\sw+" "\\(?:" (sentence-end) "\\)"))
       (save-excursion
        (skip-chars-backward " \t")
        (and (/= (skip-syntax-backward "w") 0)
             (/= (skip-chars-backward " \t") 0)
-            (/= (skip-chars-backward ".?!:") 0)))))
+            (/= (skip-chars-backward ".?!:") 0)
+            (looking-at (sentence-end))))))
 
 (defun fill-french-nobreak-p ()
   "Return nil if French style allows breaking the line at point.