We set the homepage to open if not uri was given when vimb was called. But the
vb_load_uri() function did also a check if a uri was given. Now only
vb_load_uri handles the opening of home page.
     init_core();
 
     /* command line argument: URL */
-    vb_load_uri(&(Arg){VB_TARGET_CURRENT, argc > 1 ? argv[argc - 1] : vb.config.home_page});
+    vb_load_uri(&(Arg){VB_TARGET_CURRENT, argc > 1 ? argv[argc - 1] : NULL});
 
     /* Run the main GTK+ event loop */
     gtk_main();