Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
951802d0
Commit
951802d0
authored
Nov 08, 2009
by
Chong Yidong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* compilation.txt: Add one more error message for msft (Bug#4100).
parent
b25399ac
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
3 deletions
+15
-3
etc/ChangeLog
etc/ChangeLog
+4
-0
etc/compilation.txt
etc/compilation.txt
+1
-0
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/progmodes/compile.el
lisp/progmodes/compile.el
+5
-3
No files found.
etc/ChangeLog
View file @
951802d0
2009-11-08 Chong Yidong <cyd@stupidchicken.com>
* compilation.txt: Add one more error message for msft (Bug#4100).
2009-10-09 Karl Fogel <karl.fogel@red-bean.com>
* NEWS: Document bookmark.el at 2008-06-25T16:51:33Z!monnier@iro.umontreal.ca format upgrade. (Bug#3375)
...
...
etc/compilation.txt
View file @
951802d0
...
...
@@ -269,6 +269,7 @@ made it more strict about the error message that follows.
keyboard handler.c(537) : warning C4005: 'min' : macro redefinition
d:\tmp\test.c(23) : error C2143: syntax error : missing ';' before 'if'
d:\tmp\test.c(1145) : see declaration of 'nsRefPtr'
* Open Watcom
...
...
lisp/ChangeLog
View file @
951802d0
2009-11-08 Jared Finder <jfinder@crypticstudios.com>
* progmodes/compile.el (compilation-error-regexp-alist-alist):
Handle "see declaration of" MSFT statements (Bug#4100).
2009-11-08 Michael Albinus <michael.albinus@gmx.de>
* net/tramp.el (tramp-advice-make-auto-save-file-name)
...
...
lisp/progmodes/compile.el
View file @
951802d0
...
...
@@ -297,9 +297,11 @@ of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2 nil (1))
"
in
\\
(
[^
()
\n
]+\\
)(
\\
(
[0-9]+\\
))
$
" 1 2)
(msft
;; AFAWK, The message may be a "
warning
", "
error
", or "
fatal
error
".
"
^\\
(
[0-9]+>\\
)
?\\
(
\\
(
?:[a-zA-Z]:\\
)
?[^:
(
\t\n]+\\
)(
\\
(
[0-9]+\\
))
\
:
\\
(
?:warnin\\
(
g\\
)
\\|[a-z ]+\\) C[0-9]+:" 2 3 nil (4))
;; The message may be a "
warning
", "
error
", or "
fatal
error
" with
;; an error code, or "
see
declaration
of
" without an error code.
"
^
*\\
(
[0-9]+>\\
)
?\\
(
\\
(
?:[a-zA-Z]:\\
)
?[^:
(
\t\n]+\\
)(
\\
(
[0-9]+\\
))
\
:
\\
(
?:see
declaration\\|\\(?:warnin\\(g\\)\\|[a-z
]+\\
)
C[0-9]+:\\
)
"
2 3 nil (4))
(omake
;; "
omake
-P
" reports "
file
foo
changed
"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment