mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-05 22:20:24 -08:00
Fix compilation-mode matches for csharp-mode (bug#78128)
* lisp/progmodes/csharp-mode.el: (csharp-compilation-re-dotnet-error): (csharp-compilation-re-dotnet-warning): Ignore leading whitespace.
This commit is contained in:
parent
eb6a50d3e3
commit
ebeaa728b6
1 changed files with 2 additions and 2 deletions
|
|
@ -591,10 +591,10 @@ compilation and evaluation time conflicts."
|
|||
"Regexp to match compilation warning from xbuild.")
|
||||
|
||||
(defconst csharp-compilation-re-dotnet-error
|
||||
"\\([^\r\n]+\\) : error [A-Z]+[0-9]+:")
|
||||
"[[:blank:]]*\\([^\r\n]+\\) : error [A-Z]+[0-9]+:")
|
||||
|
||||
(defconst csharp-compilation-re-dotnet-warning
|
||||
"\\([^\r\n]+\\) : warning [A-Z]+[0-9]+:")
|
||||
"[[:blank:]]*\\([^\r\n]+\\) : warning [A-Z]+[0-9]+:")
|
||||
|
||||
(defconst csharp-compilation-re-dotnet-testfail
|
||||
(concat
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue