aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-06-02 18:15:13 +0000
committerRichard M. Stallman1994-06-02 18:15:13 +0000
commitc021b7a5dcbe0523e47777f754386d033da713a5 (patch)
tree89507062cd9bbeaa68772f86732adf897976f605
parent2d1687d7f4beaba2c578403d00835d2eeecb40c2 (diff)
downloademacs-c021b7a5dcbe0523e47777f754386d033da713a5.tar.gz
emacs-c021b7a5dcbe0523e47777f754386d033da713a5.zip
(compilation-error-regexp-alist): Stricter Lucid regexp.
-rw-r--r--lisp/progmodes/compile.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index e9fc213c98b..1ab5589a28c 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -161,7 +161,7 @@ of[ \t]+\"?\\([^\":\n]+\\)\"?:" 3 2)
161 161
162 ;; Lucid Compiler, lcc 3.x 162 ;; Lucid Compiler, lcc 3.x
163 ;; E, file.cc(35,52) Illegal operation on pointers 163 ;; E, file.cc(35,52) Illegal operation on pointers
164 ("[A-Z], \\([^(]*\\)(\\([0-9]+\\),[ \t]*\\([0-9]+\\)" 1 2 3) 164 ("\n[EW], \\([^(\n]*\\)(\\([0-9]+\\),[ \t]*\\([0-9]+\\)" 1 2 3)
165 165
166 ) 166 )
167 "Alist that specifies how to match errors in compiler output. 167 "Alist that specifies how to match errors in compiler output.