1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-07 15:21:46 +00:00

(compilation-start): Pass nil as startfile to comint-exec.

This commit is contained in:
Sam Steingold 2007-08-07 20:10:15 +00:00
parent cbd826c50b
commit c94d5f81aa
2 changed files with 7 additions and 2 deletions

View File

@ -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.

View File

@ -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.