diff options
author | Geoff Voelker <voelker@cs.washington.edu> | 1997-07-22 21:49:49 +0000 |
---|---|---|
committer | Geoff Voelker <voelker@cs.washington.edu> | 1997-07-22 21:49:49 +0000 |
commit | 7c621f7acdd6f029c657b0cdd121faea35f0467f (patch) | |
tree | 382ba241227ef729d931c4c842a588f6a1d6b1ab /lisp/dos-w32.el | |
parent | 2b86fcb1e22776f2ffe96bf106f542b7f557c77e (diff) | |
download | emacs-7c621f7acdd6f029c657b0cdd121faea35f0467f.tar.gz |
(find-buffer-file-type-coding-system,
find-buffer-process-coding-system): Remove second argument.
Diffstat (limited to 'lisp/dos-w32.el')
-rw-r--r-- | lisp/dos-w32.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/dos-w32.el b/lisp/dos-w32.el index d90c2e7696b..cdc3e066ce9 100644 --- a/lisp/dos-w32.el +++ b/lisp/dos-w32.el @@ -85,7 +85,7 @@ against the file name, and TYPE is nil for text, t for binary.") ((and (symbolp code) (fboundp code)) (funcall code filename))))))) -(defun find-buffer-file-type-coding-system (command args) +(defun find-buffer-file-type-coding-system (command) "Choose a coding system for a file operation. If COMMAND is `insert-file-contents', the coding system is chosen based upon the filename, the contents of `untranslated-filesystem-list' and @@ -212,7 +212,7 @@ filesystem mounted on drive Z:, FILESYSTEM could be \"Z:\"." ;; Process I/O decoding and encoding. -(defun find-binary-process-coding-system (op args) +(defun find-binary-process-coding-system (command) "Choose a coding system for process I/O. The coding system for decode is 'no-conversion' if 'binary-process-output' is non-nil, and 'undecided-dos' otherwise. Similarly, the coding system |