diff options
| author | Dave Love | 1999-06-09 17:57:05 +0000 |
|---|---|---|
| committer | Dave Love | 1999-06-09 17:57:05 +0000 |
| commit | a0730fbd38eacadc67a854e66345c5d4576fc8a4 (patch) | |
| tree | d87ec54825bbec2c42e035741979f9d791fb71d7 | |
| parent | fdc3f606b1aa6cb03eb4f99951632f6822f963b3 (diff) | |
| download | emacs-a0730fbd38eacadc67a854e66345c5d4576fc8a4.tar.gz emacs-a0730fbd38eacadc67a854e66345c5d4576fc8a4.zip | |
(compilation-error-regexp-alist): Allow
digits in program name in first pattern.
| -rw-r--r-- | lisp/progmodes/compile.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 0d1ab0d7edf..7b53d6ed480 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el | |||
| @@ -164,7 +164,7 @@ or when it is used with \\[next-error] or \\[compile-goto-error].") | |||
| 164 | ;; We insist on a non-digit in the file name | 164 | ;; We insist on a non-digit in the file name |
| 165 | ;; so that we don't mistake the file name for a command name | 165 | ;; so that we don't mistake the file name for a command name |
| 166 | ;; and take the line number as the file name. | 166 | ;; and take the line number as the file name. |
| 167 | ("\\([-a-zA-Z._]+: ?\\)?\ | 167 | ("\\([a-zA-Z][-a-zA-Z._0-9]+: ?\\)?\ |
| 168 | \\([a-zA-Z]?:?[^:( \t\n]*[^:( \t\n0-9][^:( \t\n]*\\)[:(][ \t]*\\([0-9]+\\)\ | 168 | \\([a-zA-Z]?:?[^:( \t\n]*[^:( \t\n0-9][^:( \t\n]*\\)[:(][ \t]*\\([0-9]+\\)\ |
| 169 | \\([) \t]\\|:\\(\\([0-9]+:\\)\\|[0-9]*[^:0-9]\\)\\)" 2 3 6) | 169 | \\([) \t]\\|:\\(\\([0-9]+:\\)\\|[0-9]*[^:0-9]\\)\\)" 2 3 6) |
| 170 | 170 | ||