.emacs-my
changeset 1052 375c733219fb
parent 1051 1248821d9d0b
child 1053 a6a203a2b64c
equal deleted inserted replaced
1051:1248821d9d0b 1052:375c733219fb
  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