diff options
| -rw-r--r-- | lisp/files.el | 2 |
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) |