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


From: Masatake YAMATO
Subject: [Emacs-diffs] Changes to emacs/lisp/progmodes/compile.el
Date: Sun, 10 Apr 2005 02:19:32 -0400

Index: emacs/lisp/progmodes/compile.el
diff -c emacs/lisp/progmodes/compile.el:1.350 
emacs/lisp/progmodes/compile.el:1.351
*** emacs/lisp/progmodes/compile.el:1.350       Fri Apr  8 14:26:12 2005
--- emacs/lisp/progmodes/compile.el     Sun Apr 10 06:19:30 2005
***************
*** 280,286 ****
  
      (4bsd
       "\\(?:^\\|::  \\|\\S ( \\)\\(/[^ \n\t()]+\\)(\\([0-9]+\\))\
! \\(?:: \\(warning:\\)?\\|$\\| ),\\)" 1 2 nil (3)))
    "Alist of values for `compilation-error-regexp-alist'.")
  
  (defcustom compilation-error-regexp-alist
--- 280,297 ----
  
      (4bsd
       "\\(?:^\\|::  \\|\\S ( \\)\\(/[^ \n\t()]+\\)(\\([0-9]+\\))\
! \\(?:: \\(warning:\\)?\\|$\\| ),\\)" 1 2 nil (3))
! 
!     (gcov-file
!      "^ +-:    \\(0\\):Source:\\(.+\\)$" 2 1 nil 0)    
!     (gcov-bb-file
!      "^ +-:    \\(0\\):Object:\\(?:.+\\)$" nil 1 nil 0)    
!     (gcov-never-called-line
!      "^ +\\(#####\\): +\\([0-9]+\\):.+$" nil 2 nil 2 nil 
!      (1 compilation-error-face))
!     (gcov-called-line
!      "^ +[-0-9]+: +\\([1-9]\\|[0-9]\\{2,\\}\\):.*$" nil 1 nil 0)
! )
    "Alist of values for `compilation-error-regexp-alist'.")
  
  (defcustom compilation-error-regexp-alist
***************
*** 1846,1851 ****
--- 1857,1865 ----
          ;; don't use a marker.  --Stef
          (if (> pos (point-min)) (copy-marker (1- pos)) pos))))
  
+ ;;;###autoload
+ (add-to-list 'auto-mode-alist '("\\.gcov\\'" . compilation-mode))
+ 
  (provide 'compile)
  
  ;; arch-tag: 12465727-7382-4f72-b234-79855a00dd8c




reply via email to

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