From: Karl Heuer Date: Mon, 22 May 1995 20:00:17 +0000 (+0000) Subject: (file-ownership-preserved-p): Fix typo in previous change. X-Git-Tag: emacs-19.34~3991 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ec5533befb014293f00d03e10078c7c5eef65cf1;p=emacs.git (file-ownership-preserved-p): Fix typo in previous change. --- diff --git a/lisp/files.el b/lisp/files.el index efc3a8ac0de..e04a3d19012 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -1483,7 +1483,7 @@ we do not remove backup version numbers, only true file version numbers." (let ((handler (find-file-name-handler file 'file-ownership-preserved-p))) (if handler (funcall handler 'file-ownership-preserved-p file) - (let ((attributes (file-attribtues file))) + (let ((attributes (file-attributes file))) ;; Return t if the file doesn't exist, since it's true that no ;; information would be lost by an (attempted) delete and create. (or (null attributes)