瀏覽代碼

emacs.el: Set server-use-tcp to t in cygwin environment

to avoid the situation where server-running-p stops forever
pull/15/head
10sr 9 年之前
父節點
當前提交
46458d8960
共有 1 個文件被更改,包括 5 次插入0 次删除
  1. +5
    -0
      emacs.el

+ 5
- 0
emacs.el 查看文件

@@ -940,6 +940,11 @@ IF OK-IF-ALREADY-EXISTS is true force download."
(setq server-name (concat "server"
(number-to-string (emacs-pid))))

;; In Cygwin Environment `server-runnning-p' stops when server-use-tcp is nil
(when (eq system-type
'cygwin)
(setq server-use-tcp t))

(defun my-construct-emacsclient-editor-command ()
"Construct and return command in a string to connect to current Emacs server."
(if server-use-tcp


Loading…
取消
儲存