aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/files.el2
2 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index a115c0291b8..1efc5a39934 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
12007-09-22 Dan Nicolaescu <dann@ics.uci.edu> 12007-09-22 Dan Nicolaescu <dann@ics.uci.edu>
2 2
3 * files.el (file-name-sans-versions): Also allow `A-Z'.
4
3 * vc.el: Mention all supported VC backends. 5 * vc.el: Mention all supported VC backends.
4 6
52007-09-22 Richard Stallman <rms@gnu.org> 72007-09-22 Richard Stallman <rms@gnu.org>
diff --git a/lisp/files.el b/lisp/files.el
index bf7d34e2227..19762c18945 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -3188,7 +3188,7 @@ we do not remove backup version numbers, only true file version numbers."
3188 (length name)) 3188 (length name))
3189 (if keep-backup-version 3189 (if keep-backup-version
3190 (length name) 3190 (length name)
3191 (or (string-match "\\.~[-0-9a-z._]+~\\'" name) 3191 (or (string-match "\\.~[-0-9a-zA-Z._]+~\\'" name)
3192 (string-match "~\\'" name) 3192 (string-match "~\\'" name)
3193 (length name)))))))) 3193 (length name))))))))
3194 3194