[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: compilation-error-regexp-alist syntax problems
From: |
Stefan Monnier |
Subject: |
Re: compilation-error-regexp-alist syntax problems |
Date: |
Tue, 03 Feb 2004 17:54:54 GMT |
User-agent: |
Gnus/5.09 (Gnus v5.9.0) Emacs/21.3.50 |
> Ah hah! That's the problem. It's not in the local version.
> Next question, how do I get the local version to include it?
Looking at `compile-internal', it seems you'll have to do
things differently.
The simplest is:
(require 'compile)
(add-to-list 'compilation-error-regexp-alist
'("\\[javac\\] *\\(/[^:]+\\):\\([^:]*\\):" 1 2))
and if you don't want to have to preload compile.el from your .emacs file
(I personally hate it when I have to do that), you'l have to use something
like eval-after-load (a bit untidy) or to setq error-regexp-alist (really
ugly and likely to break in a future version of compile.el).
Hmm... there's room for improvement in compile.el.
Stefan
- compilation-error-regexp-alist syntax problems, Roy Smith, 2004/02/02
- Re: compilation-error-regexp-alist syntax problems, Stefan Monnier, 2004/02/02
- Re: compilation-error-regexp-alist syntax problems, Roy Smith, 2004/02/02
- Re: compilation-error-regexp-alist syntax problems, Stefan Monnier, 2004/02/03
- Re: compilation-error-regexp-alist syntax problems, Roy Smith, 2004/02/03
- Re: compilation-error-regexp-alist syntax problems,
Stefan Monnier <=
- Re: compilation-error-regexp-alist syntax problems, Roy Smith, 2004/02/03
- Re: compilation-error-regexp-alist syntax problems, Kevin Rodgers, 2004/02/03
- Re: compilation-error-regexp-alist syntax problems, Stefan Monnier, 2004/02/03
- Re: compilation-error-regexp-alist syntax problems, Kevin Rodgers, 2004/02/03
- Re: compilation-error-regexp-alist syntax problems, Stefan Monnier, 2004/02/04
- Re: compilation-error-regexp-alist syntax problems, Kevin Rodgers, 2004/02/05
- Re: compilation-error-regexp-alist syntax problems, Stefan Monnier, 2004/02/05
Re: compilation-error-regexp-alist syntax problems, Kai Grossjohann, 2004/02/05
Re: compilation-error-regexp-alist syntax problems, Daniel Pfeiffer, 2004/02/06