X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fsupport%2Fos_cygwin.cpp;h=5d4373780730522867642f90565d1437e313c52d;hb=9a1b26a156c913f484ca2293fb2ec1c4986d2a3e;hp=702d67f4185b95cb7576f9db6b3982e46eb3edd5;hpb=d996ec89928efb3042325fa158e1d5547b9eb64d;p=lyx.git diff --git a/src/support/os_cygwin.cpp b/src/support/os_cygwin.cpp index 702d67f418..5d43737807 100644 --- a/src/support/os_cygwin.cpp +++ b/src/support/os_cygwin.cpp @@ -208,12 +208,12 @@ BOOL terminate_handler(DWORD event) return FALSE; } -} // namespace anon +} // namespace -void init(int argc, char * argv[]) +void init(int argc, char ** argv[]) { argc_ = argc; - argv_ = argv; + argv_ = *argv; // Set environment's default locale setlocale(LC_ALL, ""); @@ -364,23 +364,6 @@ string latex_path_list(string const & p) } -bool is_valid_strftime(string const & p) -{ - string::size_type pos = p.find_first_of('%'); - while (pos != string::npos) { - if (pos + 1 == string::npos) - break; - if (!containsOnly(p.substr(pos + 1, 1), - "aAbBcCdDeEFgGhHIjklmMnOpPrRsStTuUVwWxXyYzZ%+")) - return false; - if (pos + 2 == string::npos) - break; - pos = p.find_first_of('%', pos + 2); - } - return true; -} - - // returns a string suitable to be passed to popen when // reading a pipe char const * popen_read_mode()