# HG changeset patch # User Dave Love # Date 928951025 0 # Node ID 7b6625bfb652c29994714cd07cdde721e7227c2b # Parent 7bf461aabf49fa0140b08802af4c86da339f65d3 (compilation-error-regexp-alist): Allow digits in program name in first pattern. diff -r 7bf461aabf49 -r 7b6625bfb652 lisp/progmodes/compile.el --- 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)