]> git.eshelyaron.com Git - emacs.git/commitdiff
Tweak previous fill-single-char-nobreak-p doc change
authorGlenn Morris <rgm@gnu.org>
Tue, 28 Jan 2014 03:00:20 +0000 (22:00 -0500)
committerGlenn Morris <rgm@gnu.org>
Tue, 28 Jan 2014 03:00:20 +0000 (22:00 -0500)
etc/NEWS
lisp/textmodes/fill.el

index 546da03d69985120c851515a1fad9d9d571b0a7e..febe40f4e259f62f17a449f1ce61b41824352e4a 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -282,8 +282,8 @@ leave different number of spaces.
 
 +++
 *** `fill-single-char-nobreak-p' prevents fill from breaking a line after
-a one-letter word, which is an error according to some rules of typography.
-To use it, add it to the `fill-nobreak-predicate' hook.
+a one-letter word, which is an error according to some typographical
+conventions.  To use it, add it to the `fill-nobreak-predicate' hook.
 
 +++
 ** Uniquify is enabled by default, with `post-forward-angle-brackets' style.
index dac74e758fa19a7eed4201014ec2a549884adae7..93e69055b213198e61f9eb954a2ce3637c412436 100644 (file)
@@ -333,7 +333,7 @@ places."
   "Return non-nil if a one-letter word is before point.
 This function is suitable for adding to the hook `fill-nobreak-predicate',
 to prevent the breaking of a line just after a one-letter word,
-which is an error according to some rules of typography."
+which is an error according to some typographical conventions."
   (save-excursion
     (skip-chars-backward " \t")
     (backward-char 2)