Meadowでcygwinのbashを使う
マイコンピュータのプロパティ->詳細設定->環境変数->システム環境変数
その中のPATHの先頭にcygwinインストールフォルダ;を追加する
Meadowの.emacsに
(setq explicit-shell-file-name "bash.exe")
(setq shell-file-name "sh.exe")
(setq shell-command-switch "-c")
(modify-coding-system-alist 'process ".*sh\\.exe" '(undecided-dos . euc-japan))
;; argument-editing の設定
(setq exec-suffix-list '(".exe" ".sh" ".pl"))
(setq shell-file-name-chars "~/A-Za-z0-9_^$!#%&{}@`'.:()-")
を追加する
windows再起動後Meta-x shellでcygwinのbashが使えるようになる。