X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FChktex.C;h=ac08ba8879172a190d4f1fdf97bc7b5747f7e03d;hb=98c966c64594611e469313314abd1e59524adb4a;hp=7779e14e2f2b352bf2953b02bf56554d5ccb54a6;hpb=0088121bd8c3fc7f2109e8dc9b22b73ca193f20e;p=lyx.git diff --git a/src/Chktex.C b/src/Chktex.C index 7779e14e2f..ac08ba8879 100644 --- a/src/Chktex.C +++ b/src/Chktex.C @@ -1,37 +1,38 @@ /* This file is part of - * ====================================================== - * - * LyX, The Document Processor + * ====================================================== + * + * LyX, The Document Processor * Copyright 1995 Matthias Ettrich - * Copyright 1995-2000 The LyX Team. + * Copyright 1995-2001 The LyX Team. * * This file is Copyright 1997-1998 * Asger Alstrup * - * ====================================================== + * ====================================================== */ #include -#include -#include // atoi - #ifdef __GNUG__ #pragma implementation #endif #include "Chktex.h" #include "LaTeX.h" // TeXErrors -#include "support/filetools.h" #include "lyxlex.h" -#include "support/FileInfo.h" #include "debug.h" -#include "support/syscall.h" -#include "support/syscontr.h" -#include "support/path.h" #include "gettext.h" +#include "support/FileInfo.h" +#include "support/filetools.h" +#include "support/systemcall.h" +#include "support/path.h" +#include "support/lstrings.h" + +#include + using std::ifstream; +using std::getline; /* * CLASS Chktex @@ -46,10 +47,10 @@ Chktex::Chktex(string const & chktex, string const & f, string const & p) int Chktex::run(TeXErrors &terr) { // run bibtex - string log = ChangeExtension(file, ".log", true); + string log = OnlyFilename(ChangeExtension(file, ".log")); string tmp = cmd + " -q -v0 -b0 -x " + file + " -o " + log; - Systemcalls one; - int result= one.startscript(Systemcalls::System, tmp); + Systemcall one; + int result= one.startscript(Systemcall::Wait, tmp); if (result == 0) { result = scanLogFile(terr); } else { @@ -64,18 +65,22 @@ int Chktex::scanLogFile(TeXErrors & terr) string token; int retval = 0; - string tmp = ChangeExtension(file, ".log", true); + string tmp = OnlyFilename(ChangeExtension(file, ".log")); ifstream ifs(tmp.c_str()); while (getline(ifs, token)) { - string srcfile, line, pos, warno, warning; + string srcfile; + string line; + string pos; + string warno; + string warning; token = split(token, srcfile, ':'); token = split(token, line, ':'); token = split(token, pos, ':'); token = split(token, warno, ':'); token = split(token, warning, ':'); - int lineno = atoi(line.c_str()); + int lineno = lyx::atoi(line); warno = _("ChkTeX warning id #") + warno; terr.insertError(lineno, warno, warning); ++retval;