From 14e096f5efe560661b842967d7452040e55cec9e Mon Sep 17 00:00:00 2001 From: Patrick McCarty Date: Sat, 20 Feb 2010 15:08:59 -0800 Subject: [PATCH] Textedit URIs: leave the colon character unescaped. The colon ":" is safe to leave unescaped in file URIs because - Windows needs it unescaped in the "C:\" path prefix - it is a forbidden character in filenames on Mac OS X - it is generally not used in filenames on GNU/Linux --- lily/general-scheme.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/lily/general-scheme.cc b/lily/general-scheme.cc index 76cd33ad78..cd7e25d8c0 100644 --- a/lily/general-scheme.cc +++ b/lily/general-scheme.cc @@ -233,6 +233,7 @@ is_not_escape_character (Byte c) case '.': case '/': case '0'...'9': + case ':': case 'A'...'Z': case '_': case 'a'...'z': -- 2.39.2