.emacs-my
changeset 733 67e6d0381996
parent 724 77c31cb9ae75
child 734 d5281f386f48
equal deleted inserted replaced
726:2fa569bc7418 733:67e6d0381996
   289 (when (eq system-type 'windows-nt)
   289 (when (eq system-type 'windows-nt)
   290   (ignore-errors
   290   (ignore-errors
   291     (require 'cygwin-mount)
   291     (require 'cygwin-mount)
   292     (cygwin-mount-activate)
   292     (cygwin-mount-activate)
   293     )
   293     )
   294   (add-hook 'find-file-hooks 'follow-cygwin-symlink)
   294   (add-hook 'find-file-hook 'follow-cygwin-symlink)
   295   ;; Workaround for Cygwin shell, when set 'CYGWIN=noglob'. By default 'shell-quote-argument'
   295   ;; Workaround for Cygwin shell, when set 'CYGWIN=noglob'. By default 'shell-quote-argument'
   296   ;; quoted by double '\' chars this cause failure.
   296   ;; quoted by double '\' chars this cause failure.
   297   (defun shell-quote-argument (argument)
   297   (defun shell-quote-argument (argument)
   298     (concat "'" argument "'")
   298     (concat "'" argument "'")
   299     )
   299     )