hermet pushed a commit to branch master. http://git.enlightenment.org/tools/enventor.git/commit/?id=2318cd081f0e6c7c57f40ad277bfceb6ce6a8ede
commit 2318cd081f0e6c7c57f40ad277bfceb6ce6a8ede Author: ChunEon Park <[email protected]> Date: Thu Feb 6 18:22:28 2014 +0900 config - there are not intended. revert them. --- src/bin/config_data.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/bin/config_data.c b/src/bin/config_data.c index 6c9ffb8..cf1f474 100644 --- a/src/bin/config_data.c +++ b/src/bin/config_data.c @@ -34,12 +34,12 @@ typedef struct config_s void *update_cb_data; Evas_Coord_Size view_size; - Eina_Bool stats_bar; - Eina_Bool linenumber; - Eina_Bool part_highlight; - Eina_Bool dummy_swallow; - Eina_Bool auto_indent; - Eina_Bool hotkeys; + Eina_Bool stats_bar : 1; + Eina_Bool linenumber : 1; + Eina_Bool part_highlight : 1; + Eina_Bool dummy_swallow : 1; + Eina_Bool auto_indent : 1; + Eina_Bool hotkeys : 1; } config_data; static config_data *g_cd = NULL; --
