summaryrefslogtreecommitdiffstats
path: root/emacs/site-lisp/ext.el
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2013-04-09 16:53:19 +0200
committerGravatar Tom Willemsen2013-04-09 16:53:19 +0200
commitbab8601a498e6bd18c612b849c21235dd4bf65f6 (patch)
tree9e72e95b5390fca1929aa40668016862fc1e440e /emacs/site-lisp/ext.el
parentd90fe264ea5809996eb6993bb651b687c259cf04 (diff)
downloaddotfiles-bab8601a498e6bd18c612b849c21235dd4bf65f6.tar.gz
dotfiles-bab8601a498e6bd18c612b849c21235dd4bf65f6.zip
Emacs: Stop using org
I like literal programming, but I'm nog good at writing stories for each change.
Diffstat (limited to 'emacs/site-lisp/ext.el')
-rw-r--r--emacs/site-lisp/ext.el10
1 files changed, 0 insertions, 10 deletions
diff --git a/emacs/site-lisp/ext.el b/emacs/site-lisp/ext.el
index d9e1973..2ed65d4 100644
--- a/emacs/site-lisp/ext.el
+++ b/emacs/site-lisp/ext.el
@@ -38,16 +38,6 @@
buffer-file-name))))
(list "pycheck.sh" (list local-file))))
-(defun ext:comp-finish-function (buf str)
- "Don't show compilation window if everything went ok"
- (if (string-match "exited abnormally" str)
- ;; there were errors
- (message "compilation errors, press C-x ` to visit")
- ;; no errors, make the compilation window go away in 0.5 seconds
- (when (member (buffer-name) '("*Compilation*" "*compilation*"))
- (run-at-time 0.5 nil 'delete-windows-on buf)
- (message "No compilation errors!"))))
-
(defun ext:reload-buffer ()
"Reload current buffer."
(interactive)