Skip to content

Instantly share code, notes, and snippets.

@baron
Created December 5, 2010 11:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save baron/729032 to your computer and use it in GitHub Desktop.
Save baron/729032 to your computer and use it in GitHub Desktop.
(defun twittering-mode-exit ()
"twittering-mode を終了する。"
(interactive)
(when (y-or-n-p "Really exit twittering-mode? ")
(if twittering-timer
(twittering-stop))
(dolist (buf (twittering-get-active-buffer-list))
(if (get-buffer buf)
(kill-buffer buf))))
(garbage-collect))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment