git mv src/bin/termptysave.{c,h} src/bin/backlog.{c,h}

This commit is contained in:
Boris Faure 2019-11-23 18:31:23 +01:00
parent b2ff5f3ccd
commit 62302496dc
Signed by: borisfaure
GPG Key ID: EAA9CD729F522998
6 changed files with 7 additions and 7 deletions

View File

@ -1,6 +1,7 @@
A simple documentation to navige through the C files:
* `src/bin/about.c` handles the About widget
* `src/bin/backlog.c`: backlog handling
* `src/bin/col.c` is about the colors handled by the terminal
* `src/bin/config.c`: how the configuration is saved/loaded/updated
* `src/bin/controls.c`: the widget when a right-click is done on a terminal
@ -33,7 +34,6 @@ A simple documentation to navige through the C files:
* `src/bin/termptyext.c`: extented terminology escape handling
* `src/bin/termptygfx.c`: charset translations
* `src/bin/termptyops.c`: handling history
* `src/bin/termptysave.c`: compression of the backlog
* `src/bin/tyalpha.c`: the `tyalpha` tool
* `src/bin/tybg.c`: the `tybg` tool
* `src/bin/tycat.c`: the `tycat` tool

View File

@ -1,7 +1,7 @@
#include "private.h"
#include <Elementary.h>
#include "termpty.h"
#include "termptysave.h"
#include "backlog.h"
static int ts_comp = 0;

View File

@ -31,7 +31,7 @@ terminology_sources = ['private.h',
'termptyops.c', 'termptyops.h',
'termptygfx.c', 'termptygfx.h',
'termptyext.c', 'termptyext.h',
'termptysave.c', 'termptysave.h',
'backlog.c', 'backlog.h',
'md5/md5.c', 'md5/md5.h',
'utf8.c', 'utf8.h',
'win.c', 'win.h',
@ -49,7 +49,7 @@ tycat_sources = ['tycommon.c', 'tycommon.h', 'tycat.c', 'extns.c', 'extns.h']
tyls_sources = ['extns.c', 'extns.h', 'tyls.c', 'tycommon.c', 'tycommon.h']
tysend_sources = ['tycommon.c', 'tycommon.h', 'tysend.c']
tyfuzz_sources = ['termptyesc.c', 'termptyesc.h',
'termptysave.c', 'termptysave.h',
'backlog.c', 'backlog.h',
'termptyops.c', 'termptyops.h',
'termptydbl.c', 'termptydbl.h',
'termptyext.c', 'termptyext.h',
@ -64,7 +64,7 @@ tyfuzz_sources = ['termptyesc.c', 'termptyesc.h',
'utils.c', 'utils.h',
'tyfuzz.c']
tytest_sources = ['termptyesc.c', 'termptyesc.h',
'termptysave.c', 'termptysave.h',
'backlog.c', 'backlog.h',
'termptyops.c', 'termptyops.h',
'termptydbl.c', 'termptydbl.h',
'termptyext.c', 'termptyext.h',

View File

@ -6,7 +6,7 @@
#include "termpty.h"
#include "termptyesc.h"
#include "termptyops.h"
#include "termptysave.h"
#include "backlog.h"
#include "keyin.h"
#if !defined(ENABLE_FUZZING) && !defined(ENABLE_TESTS)
# include "win.h"

View File

@ -5,7 +5,7 @@
#include "termptydbl.h"
#include "termptyops.h"
#include "termptygfx.h"
#include "termptysave.h"
#include "backlog.h"
#include "miniview.h"
#include <assert.h>