# HG changeset patch # User Oleksandr Gavenko # Date 1267878374 -7200 # Node ID b1bd2648b8269aa13d150ac850d2f51cb0ffdac2 # Parent d4e017c7e4fbf3827f5a120759f3e72091ddb56f 'my-todo-face' deleted. Standard 'font-lock-warning-face' used instead. diff -r d4e017c7e4fb -r b1bd2648b826 .emacs-my --- a/.emacs-my Wed Feb 24 13:31:36 2010 +0200 +++ b/.emacs-my Sat Mar 06 14:26:14 2010 +0200 @@ -637,11 +637,6 @@ "Face for showing TABs." :group 'basic-faces) -(defface my-todo-face - '((t :foreground "red" :weight bold)) - "Font for showing TODO words." - :group 'basic-faces) - (defface my-conflict-face '((t :background "pink" :foreground "red" :weight bold)) "Font for showing conflicts." @@ -657,7 +652,7 @@ (font-lock-add-keywords nil '( ("\t+" 0 'my-tab-face t) - ("\\<\\(FIXME:?\\|XXX:?\\|TODO:?\\)\\>" 1 'my-todo-face t) + ("\\<\\(FIXME:?\\|XXX:?\\|TODO:?\\)\\>" 1 'font-lock-warning-face t) ("\\(=\\{7,\\}\\|<\\{7,\\}\\|>\\{7,\\}\\)" 1 'my-conflict-face t) ))))))