summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1996-01-04 23:35:23 +0000
committerKarl Heuer <kwzh@gnu.org>1996-01-04 23:35:23 +0000
commit5512735ef6aeed000bedb1b313b1c30176fdebcb (patch)
treef75c10f7ccca8658669b48a7e22b72aecfb2ffdd /lisp
parent0225ae5eef361239e4cc5c06e2852ea8b1127a22 (diff)
downloademacs-5512735ef6aeed000bedb1b313b1c30176fdebcb.tar.gz
(fill-context-prefix, unjustify-current-line,
unjustify-region): Doc fix.
Diffstat (limited to 'lisp')
-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 f244a0d4e92..98248bbf886 100644
--- a/lisp/textmodes/fill.el
+++ b/lisp/textmodes/fill.el
@@ -712,7 +712,7 @@ otherwise it is made canonical."
(defun unjustify-current-line ()
"Remove justification whitespace from current line.
If the line is centered or right-justified, this function removes any
-indentation past the left margin. If the line is full-jusitified, it removes
+indentation past the left margin. If the line is full-justified, it removes
extra spaces between words. It does nothing in other justification modes."
(let ((justify (current-justification)))
(cond ((eq 'left justify) nil)
@@ -738,7 +738,7 @@ extra spaces between words. It does nothing in other justification modes."
(defun unjustify-region (&optional begin end)
"Remove justification whitespace from region.
For centered or right-justified regions, this function removes any indentation
-past the left margin from each line. For full-jusitified lines, it removes
+past the left margin from each line. For full-justified lines, it removes
extra spaces between words. It does nothing in other justification modes.
Arguments BEGIN and END are optional; default is the whole buffer."
(save-excursion