Skip to content

Instantly share code, notes, and snippets.

@PhilHudson
Created November 11, 2012 11:33
Show Gist options
  • Save PhilHudson/4054639 to your computer and use it in GitHub Desktop.
Save PhilHudson/4054639 to your computer and use it in GitHub Desktop.
Workaround for identica-mode memory leak
(defun ph/kill-bogus-http-buffers ()
"Kill bogus http buffers created by `identica-mode' wtf."
(interactive)
(ignore-errors
(kill-buffers-matching
"^.\\*http 127\\.0\\.0\\.1:3128\\*\\(<[[:digit:]]+>\\)?"
)
)
)
(add-hook 'identica-mode-hook 'ph/turn-off-filladapt-mode)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment