Created
September 25, 2010 20:16
-
-
Save qdot/597264 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; 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