Skip to content

Commit

Permalink
Fixed PHP 'CR' problem.
Browse files Browse the repository at this point in the history
  • Loading branch information
syohex committed Apr 30, 2012
1 parent c2a58b9 commit 0346431
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions quickrun.el
Expand Up @@ -4,7 +4,7 @@

;; Author: Syohei YOSHIDA <syohex@gmail.com>
;; URL: https://github.com/syohex/emacs-quickrun
;; Version: 0.9
;; Version: 1.0

;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -36,6 +36,9 @@

;;; History:

;; Version 1.0 2012/04/30 syohex
;; Fixed PHP CR problem(Thanks to mat)

;; Version 0.9 2012/04/08 syohex
;; Fix problem of not removing temporary file on Windows.

Expand Down Expand Up @@ -423,7 +426,8 @@ if you set your own language configuration.
(quickrun/check-has-command program)
(with-current-buffer buf
(erase-buffer))
(let ((proc-name (format "quickrun-process-%s" program)))
(let ((proc-name (format "quickrun-process-%s" program))
(process-connection-type nil))
(lexical-let ((process (start-process-shell-command proc-name buf cmd)))
(if (>= quickrun-timeout-seconds 0)
(setq quickrun/timeout-timer
Expand Down

0 comments on commit 0346431

Please sign in to comment.