summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavel Janík <Pavel@Janik.cz>2001-12-03 06:11:37 +0000
committerPavel Janík <Pavel@Janik.cz>2001-12-03 06:11:37 +0000
commitd9a4974038ace4d3097bf153fcec8cab362f8045 (patch)
tree12e6f5f9b8b1c2be1eb2dd7503d10241d84c9230
parent220c969f6e27e0d99874ffcc05ff8cc70e4336ec (diff)
downloademacs-d9a4974038ace4d3097bf153fcec8cab362f8045.tar.gz
emacs-d9a4974038ace4d3097bf153fcec8cab362f8045.tar.bz2
emacs-d9a4974038ace4d3097bf153fcec8cab362f8045.zip
Doc fixes.
-rw-r--r--lisp/textmodes/fill.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/textmodes/fill.el b/lisp/textmodes/fill.el
index e9c62327a9c..4995e25d674 100644
--- a/lisp/textmodes/fill.el
+++ b/lisp/textmodes/fill.el
@@ -900,7 +900,7 @@ If the mark is not active, this applies to the current paragraph."
(set-justification b e 'left t))
(defun set-justification-right (b e)
- "Make paragraphs in the region right-justified:
+ "Make paragraphs in the region right-justified.
Flush at the right margin and ragged on the left.
If the mark is not active, this applies to the current paragraph."
(interactive (list (if mark-active (region-beginning) (point))
@@ -908,7 +908,7 @@ If the mark is not active, this applies to the current paragraph."
(set-justification b e 'right t))
(defun set-justification-full (b e)
- "Make paragraphs in the region fully justified:
+ "Make paragraphs in the region fully justified.
This makes lines flush on both margins by inserting spaces between words.
If the mark is not active, this applies to the current paragraph."
(interactive (list (if mark-active (region-beginning) (point))