Skip to content

Instantly share code, notes, and snippets.

@takumikinjo
Created June 10, 2010 16:35
Show Gist options
  • Save takumikinjo/433264 to your computer and use it in GitHub Desktop.
Save takumikinjo/433264 to your computer and use it in GitHub Desktop.
(defun untabify-buffer ()
(interactive)
(untabify 1 (point-max))
(if (not (eq major-mode 'mew-draft-mode))
;; delete-trailing-whitespace does not work in mew-draft-mode.
(delete-trailing-whitespace)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment