equal
deleted
inserted
replaced
1377 (font-lock-add-keywords |
1377 (font-lock-add-keywords |
1378 mode |
1378 mode |
1379 `( |
1379 `( |
1380 ("\t+" 0 'my-tab-face t) |
1380 ("\t+" 0 'my-tab-face t) |
1381 ( ,(concat "\\<\\(" (regexp-opt '("TODO" "FIX" "FIXME" "HACK" "XXX")) ":?\\)\\>") 1 'font-lock-warning-face t) |
1381 ( ,(concat "\\<\\(" (regexp-opt '("TODO" "FIX" "FIXME" "HACK" "XXX")) ":?\\)\\>") 1 'font-lock-warning-face t) |
1382 ("\\(=\\|<\\|>\\)\\{7,\\}" 0 'my-contrasty-face t) |
|
1383 ;; 64 times, for highlight C-u C-u C-u <key> |
1382 ;; 64 times, for highlight C-u C-u C-u <key> |
1384 ("\\([^[:space:]]\\)\\1\\{63\\}" 0 'my-contrasty-face t) |
1383 ("\\([^[:space:]]\\)\\1\\{63\\}" 0 'my-contrasty-face t) |
1385 )) |
1384 )) |
1386 ) |
1385 ) |
1387 |
1386 |