From: Patrick McCarty Date: Sat, 20 Feb 2010 23:08:59 +0000 (-0800) Subject: Textedit URIs: leave the colon character unescaped. X-Git-Tag: release/2.13.14-1~50 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=14e096f5efe560661b842967d7452040e55cec9e;p=lilypond.git 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 --- 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':