aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Djärv2007-06-28 19:07:32 +0000
committerJan Djärv2007-06-28 19:07:32 +0000
commit12585bf2c462fe44a580d42587991a12ee930a06 (patch)
treedd4faf68a17f315d5803f45a6416906549534651
parentde3f71d670b870a0bd3f10cbedb427c0d81f8dbc (diff)
downloademacs-12585bf2c462fe44a580d42587991a12ee930a06.tar.gz
emacs-12585bf2c462fe44a580d42587991a12ee930a06.zip
(dnd-get-local-file-name): Set fixcase to t in call to
replace-regexp-in-string.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/dnd.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 2a273b46166..8beffcd2752 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12007-06-28 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
2
3 * dnd.el (dnd-get-local-file-name): Set fixcase to t in call to
4 replace-regexp-in-string.
5
12007-06-28 Andreas Schwab <schwab@suse.de> 62007-06-28 Andreas Schwab <schwab@suse.de>
2 7
3 * Makefile.in ($(lisp)/mh-e/mh-loaddefs.el): Depend on 8 * Makefile.in ($(lisp)/mh-e/mh-loaddefs.el): Depend on
diff --git a/lisp/dnd.el b/lisp/dnd.el
index df081539cf0..193fa962ea7 100644
--- a/lisp/dnd.el
+++ b/lisp/dnd.el
@@ -149,7 +149,7 @@ Return nil if URI is not a local file."
149 "%[A-Fa-f0-9][A-Fa-f0-9]" 149 "%[A-Fa-f0-9][A-Fa-f0-9]"
150 (lambda (arg) 150 (lambda (arg)
151 (format "%c" (string-to-number (substring arg 1) 16))) 151 (format "%c" (string-to-number (substring arg 1) 16)))
152 f nil t)) 152 f t t))
153 (let* ((decoded-f (decode-coding-string 153 (let* ((decoded-f (decode-coding-string
154 f 154 f
155 (or file-name-coding-system 155 (or file-name-coding-system