help-gnu-emacs
[Top][All Lists]
Advanced

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

Re: How to edit compilation-error-regexp-alist in .emacs file?


From: Siegfried Heintze
Subject: Re: How to edit compilation-error-regexp-alist in .emacs file?
Date: Sun, 22 Sep 2002 19:00:30 -0700

I found an example of eval-after-load in the perl module and tried to modify
it for me.

Why does this not work?
(if (fboundp 'eval-after-load)
    (eval-after-load
     "mode-compile"
     '(progn (setcar (car compilation-error-regexp-alist) (concat
"\\(\\[Error\\] \\|\\[Fatal Error\\] \\)?"  (caar
compilation-error-regexp-alist)))
  (setcdr (car compilation-error-regexp-alist) '(3 4 7))
     (push '("^\\([-_a-zA-Z0-9]+\\.[-_a-zA-Z0-9]+\\)[ \t]*([
\t]*\\([0-9]+\\)[ \t]*,[ \t]*\\([0-9]+\\)[ \t]*)[ \t]*:[
\t]*\\(error\\|fatal error\\|warning\\)[ \t]+\\([^ ]+\\):"  1 2 3)
compilation-error-regexp-alist))  )  )




reply via email to

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