emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/log-view.el


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/log-view.el
Date: Fri, 10 Jun 2005 04:29:59 -0400

Index: emacs/lisp/log-view.el
diff -c emacs/lisp/log-view.el:1.19 emacs/lisp/log-view.el:1.20
*** emacs/lisp/log-view.el:1.19 Fri Feb 18 21:56:38 2005
--- emacs/lisp/log-view.el      Fri Jun 10 08:29:58 2005
***************
*** 63,83 ****
  (defvar log-view-mode-hook nil
    "Hook run at the end of `log-view-mode'.")
  
! (defface log-view-file-face
    '((((class color) (background light))
       (:background "grey70" :weight bold))
      (t (:weight bold)))
    "Face for the file header line in `log-view-mode'."
    :group 'log-view)
! (defvar log-view-file-face 'log-view-file-face)
  
! (defface log-view-message-face
    '((((class color) (background light))
       (:background "grey85"))
      (t (:weight bold)))
    "Face for the message header line in `log-view-mode'."
    :group 'log-view)
! (defvar log-view-message-face 'log-view-message-face)
  
  (defconst log-view-file-re
    (concat "^\\("
--- 63,87 ----
  (defvar log-view-mode-hook nil
    "Hook run at the end of `log-view-mode'.")
  
! (defface log-view-file
    '((((class color) (background light))
       (:background "grey70" :weight bold))
      (t (:weight bold)))
    "Face for the file header line in `log-view-mode'."
    :group 'log-view)
! ;; backward-compatibility alias
! (put 'log-view-file-face 'face-alias 'log-view-file)
! (defvar log-view-file-face 'log-view-file)
  
! (defface log-view-message
    '((((class color) (background light))
       (:background "grey85"))
      (t (:weight bold)))
    "Face for the message header line in `log-view-mode'."
    :group 'log-view)
! ;; backward-compatibility alias
! (put 'log-view-message-face 'face-alias 'log-view-message)
! (defvar log-view-message-face 'log-view-message)
  
  (defconst log-view-file-re
    (concat "^\\("




reply via email to

[Prev in Thread] Current Thread [Next in Thread]