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 f6c0b5e9728..01705e3c57a 100644 --- a/lisp/files.el +++ b/lisp/files.el | |||
| @@ -1491,7 +1491,7 @@ we do not remove backup version numbers, only true file version numbers." | |||
| 1491 | (length name)) | 1491 | (length name)) |
| 1492 | (if keep-backup-version | 1492 | (if keep-backup-version |
| 1493 | (length name) | 1493 | (length name) |
| 1494 | (or (string-match "\\.~[0-9]+~\\'" name) | 1494 | (or (string-match "\\.~[0-9.]+~\\'" name) |
| 1495 | (string-match "~\\'" name) | 1495 | (string-match "~\\'" name) |
| 1496 | (length name)))))))) | 1496 | (length name)))))))) |
| 1497 | 1497 | ||