]> git.lyx.org Git - lyx.git/blob - src/support/os.cpp
Fixed some lines that were too long. It compiled afterwards.
[lyx.git] / src / support / os.cpp
1 /**
2  * \file os.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Ruurd A. Reitsma
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #if defined(__CYGWIN__) || defined(__CYGWIN32__)
14 #include "os_cygwin.cpp"
15 #elif defined(_WIN32)
16 #include "os_win32.cpp"
17 #else
18 #include "os_unix.cpp"
19 #endif
20
21 namespace lyx {
22 namespace support {
23 namespace os {
24
25 std::string const python()
26 {
27         // Use the -tt switch so that mixed tab/whitespace indentation is
28         // an error
29         static std::string const command("python -tt");
30         return command;
31 }
32
33 }
34 }
35 }