diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2015-08-10 22:43:27 +0200 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2015-08-10 23:24:57 +0200 |
commit | 131aee6f0800b6844fde43a698c5bb2f0080988e (patch) | |
tree | 1d4765a52e82a72cffbef8f9af6be76332c061e8 /degesch.c | |
parent | 07f6d0b350c00c754450e0e00efb39e234e78c21 (diff) | |
download | xK-131aee6f0800b6844fde43a698c5bb2f0080988e.tar.gz xK-131aee6f0800b6844fde43a698c5bb2f0080988e.tar.xz xK-131aee6f0800b6844fde43a698c5bb2f0080988e.zip |
degesch: update comments
Diffstat (limited to 'degesch.c')
-rw-r--r-- | degesch.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1414,6 +1414,7 @@ app_context_init (struct app_context *self) self->last_displayed_msg_time = time (NULL); char *encoding = nl_langinfo (CODESET); + // FIXME: put a check for "//TRANSLIT" in CMakeLists.txt #ifdef __linux__ encoding = xstrdup_printf ("%s//TRANSLIT", encoding); #else // ! __linux__ @@ -7231,7 +7232,6 @@ handle_command_buffer (struct handler_args *a) if (try_handle_buffer_goto (ctx, action)) return true; - // TODO: some subcommand to print N last lines from the buffer bool result = true; if (!strcasecmp_ascii (action, "list")) show_buffers_list (ctx); |