aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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."
712(defun unjustify-current-line () 712(defun unjustify-current-line ()
713 "Remove justification whitespace from current line. 713 "Remove justification whitespace from current line.
714If the line is centered or right-justified, this function removes any 714If the line is centered or right-justified, this function removes any
715indentation past the left margin. If the line is full-jusitified, it removes 715indentation past the left margin. If the line is full-justified, it removes
716extra spaces between words. It does nothing in other justification modes." 716extra spaces between words. It does nothing in other justification modes."
717 (let ((justify (current-justification))) 717 (let ((justify (current-justification)))
718 (cond ((eq 'left justify) nil) 718 (cond ((eq 'left justify) nil)
@@ -738,7 +738,7 @@ extra spaces between words. It does nothing in other justification modes."
738(defun unjustify-region (&optional begin end) 738(defun unjustify-region (&optional begin end)
739 "Remove justification whitespace from region. 739 "Remove justification whitespace from region.
740For centered or right-justified regions, this function removes any indentation 740For centered or right-justified regions, this function removes any indentation
741past the left margin from each line. For full-jusitified lines, it removes 741past the left margin from each line. For full-justified lines, it removes
742extra spaces between words. It does nothing in other justification modes. 742extra spaces between words. It does nothing in other justification modes.
743Arguments BEGIN and END are optional; default is the whole buffer." 743Arguments BEGIN and END are optional; default is the whole buffer."
744 (save-excursion 744 (save-excursion