# HG changeset patch # User Sam Steingold # Date 1186517415 0 # Node ID 3892324d724afe433ea28e93282bfa1246a2a85e # Parent c2087cc626c477de2ec95c7d372c310db5edaeba (compilation-start): Pass nil as startfile to comint-exec. diff -r c2087cc626c4 -r 3892324d724a lisp/ChangeLog --- a/lisp/ChangeLog Tue Aug 07 16:55:40 2007 +0000 +++ b/lisp/ChangeLog Tue Aug 07 20:10:15 2007 +0000 @@ -1,3 +1,8 @@ +2007-08-07 Sam Steingold + + * progmodes/compile.el (compilation-start): Pass nil as startfile + to comint-exec. + 2007-08-07 Chong Yidong * longlines.el (longlines-decoded): New variable. diff -r c2087cc626c4 -r 3892324d724a lisp/progmodes/compile.el --- a/lisp/progmodes/compile.el Tue Aug 07 16:55:40 2007 +0000 +++ b/lisp/progmodes/compile.el Tue Aug 07 20:10:15 2007 +0000 @@ -170,7 +170,7 @@ (maven ;; Maven is a popular build tool for Java. Maven is Free Software. "\\(.*?\\):\\[\\([0-9]+\\),\\([0-9]+\\)\\]" 1 2 3) - + (bash "^\\([^: \n\t]+\\): line \\([0-9]+\\):" 1 2) @@ -1136,7 +1136,7 @@ (if (file-remote-p default-directory) "/bin/sh" shell-file-name) - `("-c" ,command)))) + nil `("-c" ,command)))) (start-file-process-shell-command (downcase mode-name) outbuf command)))) ;; Make the buffer's mode line show process state.