1
1

1999-05-31 Miguel de Icaza <miguel@nuclecu.unam.mx>

* main.c (handle_args): Handle --desktop-linksdir without using X
Этот коммит содержится в:
Miguel de Icaza 1999-06-01 04:14:47 +00:00
родитель 51390b72e2
Коммит 73a90854ac
2 изменённых файлов: 11 добавлений и 0 удалений

Просмотреть файл

@ -1,3 +1,7 @@
1999-05-31 Miguel de Icaza <miguel@nuclecu.unam.mx>
* main.c (handle_args): Handle --desktop-linksdir without using X
1999-05-29 Miguel de Icaza <miguel@nuclecu.unam.mx>
* treestore.c (should_skip_directory): Add fix from Wayne Roberts

Просмотреть файл

@ -2788,6 +2788,13 @@ handle_args (int argc, char *argv [])
poptContext ctx;
#ifdef HAVE_GNOME
/* special case, handle --desktop-linksdir without initing X */
if (argc > 1){
if (strcmp (argv [1], "--desktop-linksdir") == 0){
puts (DESKTOP_INIT_DIR);
exit (1);
}
}
#ifdef HAVE_CORBA
init_corba_with_args (&argc, argv, &ctx);
#else