changeset 26395:8a8fba067d7a

(file-local-copy): Remove optional BUFFER argument because that's not used by anything.
author Gerd Moellmann <gerd@gnu.org>
date Wed, 10 Nov 1999 12:10:46 +0000
parents d56f32ebe093
children b4a032382ae3
files lisp/files.el
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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)