From c94d5f81aaef23672bf1be040c9388f8fe9f88e5 Mon Sep 17 00:00:00 2001 From: Sam Steingold Date: Tue, 7 Aug 2007 20:10:15 +0000 Subject: [PATCH] (compilation-start): Pass nil as startfile to comint-exec. --- lisp/ChangeLog | 5 +++++ 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 + + * progmodes/compile.el (compilation-start): Pass nil as startfile + to comint-exec. + 2007-08-07 Chong Yidong * 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. -- 2.39.2