Added my own version of vm-mime-save-all-files to generate on the fly different filen...
[elisp.git] / emacs.el
index a9f982f..d35de82 100644 (file)
--- a/emacs.el
+++ b/emacs.el
@@ -384,6 +384,8 @@ load-warning buffer in case of failure."
   (ff/configure-faces
    '((italic :underline nil)
      (info-title-2 :foreground "green")
+     (font-lock-comment-delimiter-face :foreground "black")
+     (font-lock-comment-face :foreground "black")
      (cperl-array-face :background "gray90" :foreground "blue" :weight 'bold)
      (cperl-hash-face :background "gray90" :foreground "purple" :weight 'bold)
      (diff-added :background "gray90" :foreground "green4" :weight 'bold)
@@ -1965,10 +1967,12 @@ a file in /tmp"
 (defun ff/start-flyspell () (interactive)
   (ff/configure-faces
    '(
-     (flyspell-incorrect :background "#ff0000" :foreground "black")
-     (flyspell-duplicate :background "#ff9000" :foreground "black")
+     ;; (flyspell-incorrect :background "#ff0000" :foreground "black")
+     ;; (flyspell-duplicate :background "#ff9000" :foreground "black")
+     (flyspell-incorrect :foreground "#ff0000" :weight 'bold)
+     (flyspell-duplicate :foreground "#ff9000" :weight 'bold)
      ))
-  (flyspell-buffer)
+  ;; (flyspell-buffer)
   )
 
 (add-hook 'flyspell-mode-hook 'ff/start-flyspell)