Function: set-justification-left

set-justification-left is an interactive and byte-compiled function defined in fill.el.gz.

Signature

(set-justification-left B E)

Documentation

Make paragraphs in the region left-justified.

This means lines are flush (lined up) at the left margin and ragged on the right. This is usually the default, but see the variable default-justification. If the mark is not active, this applies to the current paragraph.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/fill.el.gz
(defun set-justification-left (b e)
  "Make paragraphs in the region left-justified.
This means lines are flush (lined up) at the left margin and ragged
on the right.
This is usually the default, but see the variable `default-justification'.
If the mark is not active, this applies to the current paragraph."
  (interactive (list (if mark-active (region-beginning) (point))
		     (if mark-active (region-end) (point))))
  (set-justification b e 'left t))