all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Roy Smith <roy@panix.com>
Subject: Re: compilation-error-regexp-alist syntax problems
Date: Tue, 03 Feb 2004 14:00:53 -0500	[thread overview]
Message-ID: <roy-B2016A.14005303022004@reader2.panix.com> (raw)
In-Reply-To: jwvk7342gu7.fsf-monnier+gnu.emacs.help@asado.iro.umontreal.ca

In article 
<jwvk7342gu7.fsf-monnier+gnu.emacs.help@asado.iro.umontreal.ca>,
 Stefan Monnier <monnier@iro.umontreal.ca> wrote:

> > 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

Ah, I got it!

Once I got past the local/global problem, the next problem turned out to 
be that the regex apparantly must match the entire line (or at least 
anchored at the beginning).  Adding " *" to the front of the regex (to 
match the leading white space) did the trick.

I had never heard of looking-at before, that got me over that second 
hump.

Thanks for your most patient help!

The final working version is...

(require 'compile)
(add-to-list 'compilation-error-regexp-alist
             '(" *\\[javac\\] *\\(/[^:]+\\):\\([^:]*\\):" 1 2))

  reply	other threads:[~2004-02-03 19:00 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-02-02 16:28 compilation-error-regexp-alist syntax problems Roy Smith
2004-02-02 17:02 ` Stefan Monnier
2004-02-02 21:38   ` Roy Smith
2004-02-03 16:07     ` Stefan Monnier
2004-02-03 17:07       ` Roy Smith
2004-02-03 17:54         ` Stefan Monnier
2004-02-03 19:00           ` Roy Smith [this message]
2004-02-03 19:05           ` Kevin Rodgers
2004-02-03 19:31             ` Stefan Monnier
2004-02-03 22:30               ` Kevin Rodgers
2004-02-04 14:50                 ` Stefan Monnier
2004-02-05 19:40                   ` Kevin Rodgers
2004-02-05 19:48                     ` Stefan Monnier
2004-02-05  8:45 ` Kai Grossjohann
2004-02-05 13:53   ` Roy Smith
2004-02-06 22:03 ` Daniel Pfeiffer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=roy-B2016A.14005303022004@reader2.panix.com \
    --to=roy@panix.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.