diff options
author | Stefano Karapetsas <[email protected]> | 2012-06-14 00:44:18 -0700 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2012-06-14 00:44:18 -0700 |
commit | dec2e9160bdc72ff9b44582d5484e673e60e27bb (patch) | |
tree | e8c6f36a1adcb14090602b3e003c2e3063750ab1 | |
parent | 7509b2aba6103d4c3c88b82b36b12a8a3a9329be (diff) | |
parent | d69f6a09152b52c371216592936ff9ed6bb6f36c (diff) | |
download | caja-dec2e9160bdc72ff9b44582d5484e673e60e27bb.tar.bz2 caja-dec2e9160bdc72ff9b44582d5484e673e60e27bb.tar.xz |
Merge pull request #23 from haxar/patch-1
remove extra bracket
-rw-r--r-- | src/caja-location-entry.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/caja-location-entry.c b/src/caja-location-entry.c index e168ac86..c43129e8 100644 --- a/src/caja-location-entry.c +++ b/src/caja-location-entry.c @@ -92,7 +92,7 @@ try_to_expand_path (gpointer callback_data) uri_scheme = g_uri_parse_scheme (user_location); - if (!g_path_is_absolute (user_location) && uri_scheme == NULL && user_location[0] != '~') { + if (!g_path_is_absolute (user_location) && uri_scheme == NULL && user_location[0] != '~') { absolute_location = g_build_filename (entry->details->current_directory, user_location, NULL); suffix = g_filename_completer_get_completion_suffix (entry->details->completer, |