Skip to content

Instantly share code, notes, and snippets.

@qdot
Created September 25, 2010 20:16
Show Gist options
  • Save qdot/597264 to your computer and use it in GitHub Desktop.
Save qdot/597264 to your computer and use it in GitHub Desktop.
;; Stefan Monnier <foo at acm.org>. It is the opposite of fill-paragraph
;; Takes a multi-line paragraph and makes it into a single line of text.
(defun unfill-paragraph ()
(interactive)
(let ((fill-column (point-max)))
(fill-paragraph nil)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment