Created
November 11, 2012 11:33
-
-
Save PhilHudson/4054639 to your computer and use it in GitHub Desktop.
Workaround for identica-mode memory leak
This file contains hidden or 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
(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