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/grep.el


From: Lute Kamstra
Subject: [Emacs-diffs] Changes to emacs/lisp/progmodes/grep.el
Date: Thu, 28 Apr 2005 05:15:40 -0400

Index: emacs/lisp/progmodes/grep.el
diff -c emacs/lisp/progmodes/grep.el:1.34 emacs/lisp/progmodes/grep.el:1.35
*** emacs/lisp/progmodes/grep.el:1.34   Wed Feb  9 15:50:36 2005
--- emacs/lisp/progmodes/grep.el        Thu Apr 28 09:15:40 2005
***************
*** 1,7 ****
  ;;; grep.el --- run compiler as inferior of Emacs, parse error messages
  
  ;; Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
! ;;   2001, 2002, 2004  Free Software Foundation, Inc.
  
  ;; Author: Roland McGrath <address@hidden>
  ;; Maintainer: FSF
--- 1,7 ----
  ;;; grep.el --- run compiler as inferior of Emacs, parse error messages
  
  ;; Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
! ;;   2001, 2002, 2004, 2005  Free Software Foundation, Inc.
  
  ;; Author: Roland McGrath <address@hidden>
  ;; Maintainer: FSF
***************
*** 294,300 ****
        (2 compilation-line-face))
       ;; Highlight grep matches and delete markers
       ("\\(\033\\[01;41m\\)\\(.*?\\)\\(\033\\[00m\\(\033\\[K\\)?\\)"
!       (2 grep-match-face)
        ((lambda (p))
         (progn
         ;; Delete markers with `replace-match' because it updates
--- 294,303 ----
        (2 compilation-line-face))
       ;; Highlight grep matches and delete markers
       ("\\(\033\\[01;41m\\)\\(.*?\\)\\(\033\\[00m\\(\033\\[K\\)?\\)"
!       ;; Refontification does not work after the markers have been
!       ;; deleted.  So we use the font-lock-face property here as Font
!       ;; Lock does not clear that.
!       (2 (list 'face nil 'font-lock-face grep-match-face))
        ((lambda (p))
         (progn
         ;; Delete markers with `replace-match' because it updates




reply via email to

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