because that's not used by anything.
1999-11-10 Gerd Moellmann <gerd@gnu.org>
+ * files.el (file-local-copy): Remove optional BUFFER argument
+ because that's not used by anything.
+
* mail/mh-comp.el (mh-smail-batch): If TO is nil, use "" as
to-address.
(interactive "sLoad library: ")
(load library))
-(defun file-local-copy (file &optional buffer)
+(defun file-local-copy (file)
"Copy the file FILE into a temporary file on this machine.
Returns the name of the local copy, or nil, if FILE is directly
accessible."
+ ;; This formerly had an optional BUFFER argument that wasn't used by
+ ;; anything.
(let ((handler (find-file-name-handler file 'file-local-copy)))
(if handler
(funcall handler 'file-local-copy file)