diff options
author | Karl Heuer <kwzh@gnu.org> | 1996-01-09 23:20:20 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1996-01-09 23:20:20 +0000 |
commit | 9116e2578ccab15e37a0c955f70c4e2f9e9a2580 (patch) | |
tree | 418cb16d0994de8438db115201b649b3c9757cec /lisp/w32-fns.el | |
parent | f32822b43f3faa5cee03370a421d69fe2a6390d5 (diff) | |
download | emacs-9116e2578ccab15e37a0c955f70c4e2f9e9a2580.tar.gz |
(using-unix-filesystems):
Don't do anything to write-contents-hooks.
Diffstat (limited to 'lisp/w32-fns.el')
-rw-r--r-- | lisp/w32-fns.el | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lisp/w32-fns.el b/lisp/w32-fns.el index 7790d5178f8..eb0bf04c671 100644 --- a/lisp/w32-fns.el +++ b/lisp/w32-fns.el @@ -146,11 +146,9 @@ against the file name, and TYPE is nil for text, t for binary.") (if flag (progn (add-hook 'write-file-hooks 'save-to-unix-hook) - (add-hook 'write-contents-hooks 'save-to-unix-hook) (add-hook 'after-save-hook 'revert-from-unix-hook)) (progn (remove-hook 'write-file-hooks 'save-to-unix-hook) - (remove-hook 'write-contents-hooks 'save-to-unix-hook) (remove-hook 'after-save-hook 'revert-from-unix-hook)))) ;;; Fix interface to (X-specific) mouse.el |