aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2014-01-27 22:00:20 -0500
committerGlenn Morris2014-01-27 22:00:20 -0500
commit0a60cc0dbcfc1d6c12f725038464584c66ca9dfb (patch)
tree534de95ef068841445dcb801010c7b72dabdd246
parent793ffe819539d4f642631910598b9c8dc696ec38 (diff)
downloademacs-0a60cc0dbcfc1d6c12f725038464584c66ca9dfb.tar.gz
emacs-0a60cc0dbcfc1d6c12f725038464584c66ca9dfb.zip
Tweak previous fill-single-char-nobreak-p doc change
-rw-r--r--etc/NEWS4
-rw-r--r--lisp/textmodes/fill.el2
2 files changed, 3 insertions, 3 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 546da03d699..febe40f4e25 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -282,8 +282,8 @@ leave different number of spaces.
282 282
283+++ 283+++
284*** `fill-single-char-nobreak-p' prevents fill from breaking a line after 284*** `fill-single-char-nobreak-p' prevents fill from breaking a line after
285a one-letter word, which is an error according to some rules of typography. 285a one-letter word, which is an error according to some typographical
286To use it, add it to the `fill-nobreak-predicate' hook. 286conventions. To use it, add it to the `fill-nobreak-predicate' hook.
287 287
288+++ 288+++
289** Uniquify is enabled by default, with `post-forward-angle-brackets' style. 289** 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."
333 "Return non-nil if a one-letter word is before point. 333 "Return non-nil if a one-letter word is before point.
334This function is suitable for adding to the hook `fill-nobreak-predicate', 334This function is suitable for adding to the hook `fill-nobreak-predicate',
335to prevent the breaking of a line just after a one-letter word, 335to prevent the breaking of a line just after a one-letter word,
336which is an error according to some rules of typography." 336which is an error according to some typographical conventions."
337 (save-excursion 337 (save-excursion
338 (skip-chars-backward " \t") 338 (skip-chars-backward " \t")
339 (backward-char 2) 339 (backward-char 2)