summaryrefslogtreecommitdiffstats
path: root/emacs.d
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2012-04-24 13:50:49 +0200
committerAlexander Sulfrian <alexander@sulfrian.net>2012-04-24 13:50:49 +0200
commitf229f41e752586f21d2bfd2fa51bc6d57c4fbaff (patch)
treeaa6137421a6cf4e3bbf2d25a47fce88f60b97f18 /emacs.d
parent288d80e0780fbee64b3fea72e3a1529ed2e12f08 (diff)
downloaddotfiles-f229f41e752586f21d2bfd2fa51bc6d57c4fbaff.tar.gz
dotfiles-f229f41e752586f21d2bfd2fa51bc6d57c4fbaff.tar.xz
dotfiles-f229f41e752586f21d2bfd2fa51bc6d57c4fbaff.zip
emacs.d/lisp/delphi-mode-ench: require cl to be able to use pushnew
it cl is not required before, we need it here
Diffstat (limited to 'emacs.d')
-rw-r--r--emacs.d/lisp/delphi-mode-ench.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/emacs.d/lisp/delphi-mode-ench.el b/emacs.d/lisp/delphi-mode-ench.el
index fcbb3ae..2427362 100644
--- a/emacs.d/lisp/delphi-mode-ench.el
+++ b/emacs.d/lisp/delphi-mode-ench.el
@@ -1,5 +1,7 @@
;;; delphi-mode-ench.el
(require 'compile)
+(require 'cl)
+
(pushnew '("^\\([-a-zA-Z0-9\\.\\/_~]+\\)(\\([0-9]+\\),\\([0-9]+\\))\s\\([Ff]atal:\\|[Nn]ote:\\|[Ww]arning:\\|[Ee]rror:\\)\s\\(.*$\\)" 1 2 3)
compilation-error-regexp-alist)