Remove wrongly duplicated file.
authorOleksandr Gavenko <gavenkoa@gmail.com>
Wed, 09 Oct 2013 20:14:17 +0300
changeset 1079 9eda6250b20d
parent 1078 bd0c280abe8a
child 1080 8fad37c1d42f
Remove wrongly duplicated file.
log4-hl-mode.el
--- a/log4-hl-mode.el	Wed Oct 09 18:36:48 2013 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,21 +0,0 @@
-
-(require 'compile)
-
-(defvar log4-hi-keywords
-  '(("FATAL\\|ERROR" . compilation-error-face)
-    ("WARN" . compilation-warning-face)
-    ("INFO\\|DEBUG\\|TRACE" . compilation-info-face) ))
-
-(define-minor-mode log4-hi-mode
-  "Highlight standard elements in log4* like log-files."
-  nil " log4-hi" nil
-  :global nil
-  (message "%s" log4-hi-mode)
-  (catch 'exit
-    (when log4-hi-mode
-      (font-lock-mode 1)
-      (font-lock-add-keywords nil log4-hi-keywords)
-      (throw 'exit nil))
-    (font-lock-remove-keywords nil log4-hi-keywords))
-  (font-lock-fontify-buffer))
-