emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/progmodes/compile.el [lexbind]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/progmodes/compile.el [lexbind]
Date: Tue, 06 Jul 2004 07:14:29 -0400

Index: emacs/lisp/progmodes/compile.el
diff -c emacs/lisp/progmodes/compile.el:1.256.2.18 
emacs/lisp/progmodes/compile.el:1.256.2.19
*** emacs/lisp/progmodes/compile.el:1.256.2.18  Tue May 11 02:35:51 2004
--- emacs/lisp/progmodes/compile.el     Tue Jul  6 09:14:29 2004
***************
*** 448,464 ****
  (defvar compile-history nil)
  
  (defface compilation-warning-face
!   '((((type tty) (class color)) (:foreground "cyan" :weight bold))
!     (((class color)) (:foreground "Orange" :weight bold))
      (t (:weight bold)))
    "Face used to highlight compiler warnings."
    :group 'font-lock-highlighting-faces
    :version "21.4")
  
  (defface compilation-info-face
!   '((((type tty) (class color)) (:foreground "green" :weight bold))
!     (((class color) (background light)) (:foreground "Green3" :weight bold))
!     (((class color) (background dark)) (:foreground "Green" :weight bold))
      (t (:weight bold)))
    "Face used to highlight compiler warnings."
    :group 'font-lock-highlighting-faces
--- 448,466 ----
  (defvar compile-history nil)
  
  (defface compilation-warning-face
!   '((((class color) (min-colors 16)) (:foreground "Orange" :weight bold))
!     (((class color)) (:foreground "cyan" :weight bold))
      (t (:weight bold)))
    "Face used to highlight compiler warnings."
    :group 'font-lock-highlighting-faces
    :version "21.4")
  
  (defface compilation-info-face
!   '((((class color) (min-colors 16) (background light)) 
!      (:foreground "Green3" :weight bold))
!     (((class color) (min-colors 16) (background dark)) 
!      (:foreground "Green" :weight bold))
!     (((class color)) (:foreground "green" :weight bold))
      (t (:weight bold)))
    "Face used to highlight compiler warnings."
    :group 'font-lock-highlighting-faces
***************
*** 990,997 ****
         ;; buffer, which might not be the same as the selected window's buffer.
         (save-current-buffer
           (save-selected-window
!            (select-window window)
!            (enlarge-window (- height (window-height))))))))
  
  (defvar compilation-menu-map
    (let ((map (make-sparse-keymap "Errors")))
--- 992,1000 ----
         ;; buffer, which might not be the same as the selected window's buffer.
         (save-current-buffer
           (save-selected-window
!            (save-excursion
!              (select-window window)
!              (enlarge-window (- height (window-height)))))))))
  
  (defvar compilation-menu-map
    (let ((map (make-sparse-keymap "Errors")))




reply via email to

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