billiob pushed a commit to branch master. http://git.enlightenment.org/apps/terminology.git/commit/?id=b504db6cba6d83e98d5de7492c45d92f1cf15f1b
commit b504db6cba6d83e98d5de7492c45d92f1cf15f1b Author: Boris Faure <[email protected]> Date: Thu May 8 14:07:37 2014 +0200 play a bit with pahole --- src/bin/config.h | 6 +++--- src/bin/termio.c | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/bin/config.h b/src/bin/config.h index e8a4324..979dfcf 100644 --- a/src/bin/config.h +++ b/src/bin/config.h @@ -13,7 +13,8 @@ struct _Config_Color struct _Config { - int version; + int version; + int scrollback; struct { const char *name; const char *orig_name; /* not in EET */ @@ -32,9 +33,8 @@ struct _Config Eina_Bool inline_please; } helper; const char *theme; - const char *background; + const char *background; const char *wordsep; - int scrollback; double tab_zoom; int vidmod; Eina_Bool jump_on_keypress; diff --git a/src/bin/termio.c b/src/bin/termio.c index b24c7a0..6f64be0 100644 --- a/src/bin/termio.c +++ b/src/bin/termio.c @@ -26,8 +26,8 @@ struct _Termio { Evas_Object_Smart_Clipped_Data __clipped_data; struct { - int size; const char *name; + int size; int chw, chh; } font; struct { @@ -45,6 +45,7 @@ struct _Termio int cx, cy; int button; } mouse; + unsigned int last_keyup; struct { char *string; int x1, y1, x2, y2; @@ -61,7 +62,6 @@ struct _Termio } link; int zoom_fontsize_start; int scroll; - unsigned int last_keyup; Eina_List *mirrors; Eina_List *seq; Evas_Object *self; --
