# HG changeset patch # User Gerd Moellmann # Date 942235846 0 # Node ID 8a8fba067d7a4194237fece47ca443fc5ef2b6ce # Parent d56f32ebe09354d01a7cb3c193df4613171991fb (file-local-copy): Remove optional BUFFER argument because that's not used by anything. diff -r d56f32ebe093 -r 8a8fba067d7a lisp/files.el --- a/lisp/files.el Wed Nov 10 10:46:58 1999 +0000 +++ b/lisp/files.el Wed Nov 10 12:10:46 1999 +0000 @@ -501,10 +501,12 @@ (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)