# HG changeset patch # User Oleksandr Gavenko # Date 1443284984 -10800 # Node ID 064ea72c81c9de11837efcd65befb03a718ec40a # Parent b515e071a52c6912d19e2c47193942749f6d838e Don't highlight 64 subsequent chars as this break major mode highlighting. diff -r b515e071a52c -r 064ea72c81c9 .emacs-my --- a/.emacs-my Sat Sep 19 19:08:31 2015 +0300 +++ b/.emacs-my Sat Sep 26 19:29:44 2015 +0300 @@ -1638,7 +1638,7 @@ `( ( ,(concat "\\<\\(" (regexp-opt '("TODO" "FIX" "FIXME" "HACK" "XXX")) ":?\\)\\>") 1 'font-lock-warning-face t) ;; 64 times, for highlight C-u C-u C-u - ("\\([^[:space:]]\\)\\1\\{63\\}" 0 'my-contrasty-face t) + ;; ("\\([^[:space:]]\\)\\1\\{63\\}" 0 'my-contrasty-face t) )) )