Function: set-justification-none

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

Signature

(set-justification-none B E)

Documentation

Disable automatic filling for paragraphs in the region.

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-none (b e)
  "Disable automatic filling for paragraphs in the region.
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 'none t))