Mercurial > emacs
changeset 24824:7b6625bfb652
(compilation-error-regexp-alist): Allow
digits in program name in first pattern.
author | Dave Love <fx@gnu.org> |
---|---|
date | Wed, 09 Jun 1999 17:57:05 +0000 |
parents | 7bf461aabf49 |
children | f88179cfae99 |
files | lisp/progmodes/compile.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/progmodes/compile.el Wed Jun 09 16:52:56 1999 +0000 +++ b/lisp/progmodes/compile.el Wed Jun 09 17:57:05 1999 +0000 @@ -164,7 +164,7 @@ ;; We insist on a non-digit in the file name ;; so that we don't mistake the file name for a command name ;; and take the line number as the file name. - ("\\([-a-zA-Z._]+: ?\\)?\ + ("\\([a-zA-Z][-a-zA-Z._0-9]+: ?\\)?\ \\([a-zA-Z]?:?[^:( \t\n]*[^:( \t\n0-9][^:( \t\n]*\\)[:(][ \t]*\\([0-9]+\\)\ \\([) \t]\\|:\\(\\([0-9]+:\\)\\|[0-9]*[^:0-9]\\)\\)" 2 3 6)