diff --git a/src/SessionController.cpp b/src/SessionController.cpp index 19e27506a..7bd990753 100644 --- a/src/SessionController.cpp +++ b/src/SessionController.cpp @@ -1423,17 +1423,6 @@ void SaveHistoryTask::jobDataRequested(KIO::Job* job , QByteArray& data) info.session->emulation()->writeToStream( info.decoder , info.lastLineFetched+1 , copyUpToLine ); info.decoder->end(); - // if there are still more lines to process after this request - // then insert a new line character - // to ensure that the next block of lines begins on a new line - // - // FIXME - There is still an extra new-line at the end of the save data. - if ( copyUpToLine <= sessionLines-1 ) - { - stream << '\n'; - } - - info.lastLineFetched = copyUpToLine; } }