diff options
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2012-06-15 22:29:54 +0200 |
---|---|---|
committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2012-06-15 22:29:54 +0200 |
commit | 83225ab4c3bf55af6214771308ca2d2166e2fe5c (patch) | |
tree | 2395289f7b72ad0a954c329754c1f70d24696032 /src/dillo.cc | |
parent | 3b062ab24ce954c5e4ebcfddb666478237ebe712 (diff) |
add comment about NULL URL vs. about:blank
Diffstat (limited to 'src/dillo.cc')
-rw-r--r-- | src/dillo.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dillo.cc b/src/dillo.cc index ff450fe5..7552676d 100644 --- a/src/dillo.cc +++ b/src/dillo.cc @@ -412,7 +412,7 @@ int main(int argc, char **argv) /* No URLs/files on cmdline. Send startup screen */ if (dStrAsciiCasecmp(URL_SCHEME(prefs.start_page), "about") == 0 && strcmp(URL_PATH(prefs.start_page), "blank") == 0) - a_UIcmd_open_url(bw, NULL); + a_UIcmd_open_url(bw, NULL); // NULL URL focuses location else a_UIcmd_open_url(bw, prefs.start_page); } else { |