annotate .elisp/settings/50.localfuncs.el @ 90:9f4b375f5d8e

Merge.
author Augie Fackler <durin42@gmail.com>
date Mon, 20 Apr 2009 20:33:45 -0500
parents f34d90569fdc
children 075b45c5aecc
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
89
f34d90569fdc Add a file for local functions not yet extracted into a module. Includes a function to run pyflakes on the current buffer.
Augie Fackler <durin42@gmail.com>
parents:
diff changeset
1 (defun pyflakes-this-buffer ()
f34d90569fdc Add a file for local functions not yet extracted into a module. Includes a function to run pyflakes on the current buffer.
Augie Fackler <durin42@gmail.com>
parents:
diff changeset
2 (interactive)
f34d90569fdc Add a file for local functions not yet extracted into a module. Includes a function to run pyflakes on the current buffer.
Augie Fackler <durin42@gmail.com>
parents:
diff changeset
3 (compilation-start (concat "pyflakes " buffer-file-name) nil (lambda (mode) "*pyflakes*")))