* patch to support maven in compile.el
@ 2007-07-23 17:41 joakim
2007-07-23 18:33 ` Stefan Monnier
0 siblings, 1 reply; 6+ messages in thread
From: joakim @ 2007-07-23 17:41 UTC (permalink / raw)
To: emacs-devel
Maven is a popular build tool for Java. Maven is free software.
--- compile.el 2007-07-23 19:38:52.000000000 +0200
+++ /home/joakim/.elisp/compile.el 2007-07-20 15:34:17.000000000 +0200
@@ -167,6 +167,9 @@
"^[ \t]*\\[[^] \n]+\\][ \t]*\\([^: \n]+\\):\\([0-9]+\\):\\(?:\\([0-9]+\\):[0-9]+:[0-9]+:\\)?\
\\( warning\\)?" 1 2 3 (4))
+ (maven
+ "\\(.*?\\):\\[\\([0-9]+\\),\\([0-9]+\\)\\]" 1 2 3)
+
(bash
"^\\([^: \n\t]+\\): line \\([0-9]+\\):" 1 2)
--
Joakim Verona
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: patch to support maven in compile.el
2007-07-23 17:41 patch to support maven in compile.el joakim
@ 2007-07-23 18:33 ` Stefan Monnier
2007-07-23 19:29 ` joakim
2007-07-24 16:46 ` Richard Stallman
0 siblings, 2 replies; 6+ messages in thread
From: Stefan Monnier @ 2007-07-23 18:33 UTC (permalink / raw)
To: joakim; +Cc: emacs-devel
> Maven is a popular build tool for Java. Maven is free software.
Can you ask them to change their syntax to the one recommended in the GNU
coding standards, i.e. <file>:<linenb>:<colnb> ?
This proliferation of formats is simply ridiculous.
Stefan
> --- compile.el 2007-07-23 19:38:52.000000000 +0200
> +++ /home/joakim/.elisp/compile.el 2007-07-20 15:34:17.000000000 +0200
> @@ -167,6 +167,9 @@
> "^[ \t]*\\[[^] \n]+\\][ \t]*\\([^: \n]+\\):\\([0-9]+\\):\\(?:\\([0-9]+\\):[0-9]+:[0-9]+:\\)?\
> \\( warning\\)?" 1 2 3 (4))
> + (maven
> + "\\(.*?\\):\\[\\([0-9]+\\),\\([0-9]+\\)\\]" 1 2 3)
> +
> (bash
> "^\\([^: \n\t]+\\): line \\([0-9]+\\):" 1 2)
> --
> Joakim Verona
> _______________________________________________
> Emacs-devel mailing list
> Emacs-devel@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-devel
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: patch to support maven in compile.el
2007-07-23 18:33 ` Stefan Monnier
@ 2007-07-23 19:29 ` joakim
2007-07-25 4:31 ` Stefan Monnier
2007-07-24 16:46 ` Richard Stallman
1 sibling, 1 reply; 6+ messages in thread
From: joakim @ 2007-07-23 19:29 UTC (permalink / raw)
To: emacs-devel
Stefan Monnier <monnier@iro.umontreal.ca> writes:
>> Maven is a popular build tool for Java. Maven is free software.
>
> Can you ask them to change their syntax to the one recommended in the GNU
> coding standards, i.e. <file>:<linenb>:<colnb> ?
>
> This proliferation of formats is simply ridiculous.
I can try it. Would it be possible to add the rule in the mean time?
>
>
> Stefan
>
>
>> --- compile.el 2007-07-23 19:38:52.000000000 +0200
>> +++ /home/joakim/.elisp/compile.el 2007-07-20 15:34:17.000000000 +0200
>> @@ -167,6 +167,9 @@
>> "^[ \t]*\\[[^] \n]+\\][ \t]*\\([^: \n]+\\):\\([0-9]+\\):\\(?:\\([0-9]+\\):[0-9]+:[0-9]+:\\)?\
>> \\( warning\\)?" 1 2 3 (4))
>
>> + (maven
>> + "\\(.*?\\):\\[\\([0-9]+\\),\\([0-9]+\\)\\]" 1 2 3)
>> +
>> (bash
>> "^\\([^: \n\t]+\\): line \\([0-9]+\\):" 1 2)
>
>> --
>> Joakim Verona
>
>
>> _______________________________________________
>> Emacs-devel mailing list
>> Emacs-devel@gnu.org
>> http://lists.gnu.org/mailman/listinfo/emacs-devel
--
Joakim Verona
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: patch to support maven in compile.el
2007-07-23 18:33 ` Stefan Monnier
2007-07-23 19:29 ` joakim
@ 2007-07-24 16:46 ` Richard Stallman
2007-07-25 4:31 ` Stefan Monnier
1 sibling, 1 reply; 6+ messages in thread
From: Richard Stallman @ 2007-07-24 16:46 UTC (permalink / raw)
To: Stefan Monnier; +Cc: joakim, emacs-devel
Can you ask them to change their syntax to the one recommended in the GNU
coding standards, i.e. <file>:<linenb>:<colnb> ?
This proliferation of formats is simply ridiculous.
I agree, but in the meantime, we may as well support their format.
Could you please install that patch?
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: patch to support maven in compile.el
2007-07-23 19:29 ` joakim
@ 2007-07-25 4:31 ` Stefan Monnier
0 siblings, 0 replies; 6+ messages in thread
From: Stefan Monnier @ 2007-07-25 4:31 UTC (permalink / raw)
To: joakim; +Cc: emacs-devel
>>> Maven is a popular build tool for Java. Maven is free software.
>> Can you ask them to change their syntax to the one recommended in the GNU
>> coding standards, i.e. <file>:<linenb>:<colnb> ?
>> This proliferation of formats is simply ridiculous.
> I can try it. Would it be possible to add the rule in the mean time?
Yes, done,
Stefan
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: patch to support maven in compile.el
2007-07-24 16:46 ` Richard Stallman
@ 2007-07-25 4:31 ` Stefan Monnier
0 siblings, 0 replies; 6+ messages in thread
From: Stefan Monnier @ 2007-07-25 4:31 UTC (permalink / raw)
To: rms; +Cc: joakim, emacs-devel
> Can you ask them to change their syntax to the one recommended in the GNU
> coding standards, i.e. <file>:<linenb>:<colnb> ?
> This proliferation of formats is simply ridiculous.
> I agree, but in the meantime, we may as well support their format.
> Could you please install that patch?
Done,
Stefan
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2007-07-25 4:31 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-23 17:41 patch to support maven in compile.el joakim
2007-07-23 18:33 ` Stefan Monnier
2007-07-23 19:29 ` joakim
2007-07-25 4:31 ` Stefan Monnier
2007-07-24 16:46 ` Richard Stallman
2007-07-25 4:31 ` Stefan Monnier
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.