From 44e194195a4c2b3fdaf6b6cd8096ff663f045560 Mon Sep 17 00:00:00 2001 From: dave Date: Wed, 5 Jan 2005 23:02:50 +0000 Subject: Allow for colons in DOS file names git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7733 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/rdoc/usage.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/rdoc/usage.rb b/lib/rdoc/usage.rb index da6593d89..3e64cd643 100644 --- a/lib/rdoc/usage.rb +++ b/lib/rdoc/usage.rb @@ -96,7 +96,7 @@ module RDoc # Display usage def RDoc.usage_no_exit(*args) - main_program_file, = caller[-1].split(/:/, 2) + main_program_file, = caller[-1].split(/:\d+/, 2) comment = File.open(main_program_file) do |file| find_comment(file) end -- cgit