diff options
author | Sam Steingold <sds@gnu.org> | 2007-08-07 20:10:15 +0000 |
---|---|---|
committer | Sam Steingold <sds@gnu.org> | 2007-08-07 20:10:15 +0000 |
commit | c94d5f81aaef23672bf1be040c9388f8fe9f88e5 (patch) | |
tree | 83de740f50ce23f974f3fcac649989b5df221250 /lisp | |
parent | cbd826c50bc187934799b73e9b28e5f6fd927d13 (diff) | |
download | emacs-c94d5f81aaef23672bf1be040c9388f8fe9f88e5.tar.gz |
(compilation-start): Pass nil as startfile to comint-exec.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/progmodes/compile.el | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e7387459f25..8574be35565 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2007-08-07 Sam Steingold <sds@gnu.org> + + * progmodes/compile.el (compilation-start): Pass nil as startfile + to comint-exec. + 2007-08-07 Chong Yidong <cyd@stupidchicken.com> * longlines.el (longlines-decoded): New variable. diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index caf0e94b927..d7283037b6f 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -170,7 +170,7 @@ of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2 nil (1)) (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 @@ Returns the compilation buffer created." (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. |