diff options
author | Glenn Morris <rgm@gnu.org> | 2014-01-27 22:00:20 -0500 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2014-01-27 22:00:20 -0500 |
commit | 0a60cc0dbcfc1d6c12f725038464584c66ca9dfb (patch) | |
tree | 534de95ef068841445dcb801010c7b72dabdd246 | |
parent | 793ffe819539d4f642631910598b9c8dc696ec38 (diff) | |
download | emacs-0a60cc0dbcfc1d6c12f725038464584c66ca9dfb.tar.gz |
Tweak previous fill-single-char-nobreak-p doc change
-rw-r--r-- | etc/NEWS | 4 | ||||
-rw-r--r-- | lisp/textmodes/fill.el | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -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. diff --git a/lisp/textmodes/fill.el b/lisp/textmodes/fill.el index dac74e758fa..93e69055b21 100644 --- a/lisp/textmodes/fill.el +++ b/lisp/textmodes/fill.el @@ -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) |