From: Richard Kimberly Heck Date: Thu, 31 May 2018 03:13:07 +0000 (-0400) Subject: Revert "Remove test for files when using batch mode." X-Git-Tag: lyx-2.4.0dev-acb2ca7b~3385 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=efc9720b0d5315cb4d5ab3eac4d2cbbebc392ac8;p=features.git Revert "Remove test for files when using batch mode." We are not really ready for this case. This reverts commit e143f0b9e94c7285887ab98ff03841a6fe4883c0. --- diff --git a/src/LyX.cpp b/src/LyX.cpp index 9cdad32598..0e1b19faf6 100644 --- a/src/LyX.cpp +++ b/src/LyX.cpp @@ -493,8 +493,12 @@ int LyX::init(int & argc, char * argv[]) for (int argi = 1; argi < argc; ++argi) pimpl_->files_to_load_.push_back(os::utf8_argv(argi)); - // doesn't make sense to load the splash file in batch mode - if (use_gui && first_start) { + if (!use_gui && pimpl_->files_to_load_.empty()) { + lyxerr << to_utf8(_("Missing filename for this operation.")) << endl; + return EXIT_FAILURE; + } + + if (first_start) { pimpl_->files_to_load_.push_back( i18nLibFileSearch("examples", "splash.lyx").absFileName()); }