aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1995-05-22 20:00:17 +0000
committerKarl Heuer1995-05-22 20:00:17 +0000
commitec5533befb014293f00d03e10078c7c5eef65cf1 (patch)
tree329729b49e8d039617fff402383ec3b646f4ceb1
parente3b671fc68334ee4607f2516e99eaa404009059a (diff)
downloademacs-ec5533befb014293f00d03e10078c7c5eef65cf1.tar.gz
emacs-ec5533befb014293f00d03e10078c7c5eef65cf1.zip
(file-ownership-preserved-p): Fix typo in previous change.
-rw-r--r--lisp/files.el2
1 files changed, 1 insertions, 1 deletions
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."
1483 (let ((handler (find-file-name-handler file 'file-ownership-preserved-p))) 1483 (let ((handler (find-file-name-handler file 'file-ownership-preserved-p)))
1484 (if handler 1484 (if handler
1485 (funcall handler 'file-ownership-preserved-p file) 1485 (funcall handler 'file-ownership-preserved-p file)
1486 (let ((attributes (file-attribtues file))) 1486 (let ((attributes (file-attributes file)))
1487 ;; Return t if the file doesn't exist, since it's true that no 1487 ;; Return t if the file doesn't exist, since it's true that no
1488 ;; information would be lost by an (attempted) delete and create. 1488 ;; information would be lost by an (attempted) delete and create.
1489 (or (null attributes) 1489 (or (null attributes)