# HG changeset patch # User Oleksandr Gavenko # Date 1381338857 -10800 # Node ID 9eda6250b20d2c82a348ed00d5540c686f587bc4 # Parent bd0c280abe8a34b84f4186e5c9a161255e526d3f Remove wrongly duplicated file. diff -r bd0c280abe8a -r 9eda6250b20d 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)) -