Skip to content

Commit

Permalink
Merge pull request #6300 from ivarne/release-0.2
Browse files Browse the repository at this point in the history
[Backport] fix for #5123
  • Loading branch information
JeffBezanson committed Mar 31, 2014
2 parents d69fc32 + 00ea7df commit 0c5f14e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/path.jl
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ end
@windows_only begin
const path_separator = "\\"
const path_separator_re = r"[/\\]+"
const path_absolute_re = r"^(?:\w+:)[/\\]"
const path_absolute_re = r"^(?:\w+:)?[/\\]"
const path_directory_re = r"(?:^|[/\\])\.{0,2}$"
const path_dir_splitter = r"^(.*?)([/\\]+)([^/\\]*)$"
const path_ext_splitter = r"^((?:.*[/\\])?(?:\.|[^/\\\.])[^/\\]*?)(\.[^/\\\.]*|)$"
Expand Down

0 comments on commit 0c5f14e

Please sign in to comment.