X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=progs%2Ftabs.c;h=002a7531de08af3de16af0587ac59c752370f6d2;hp=f3cc42fb7b009d9319668950ebd4ac27ac1132f5;hb=da518a7ad2d94c8e63186a49621e907967a31a37;hpb=65ee0f2ca50c827bf271df7a087edd7da49f598d diff --git a/progs/tabs.c b/progs/tabs.c index f3cc42fb..002a7531 100644 --- a/progs/tabs.c +++ b/progs/tabs.c @@ -1,5 +1,5 @@ /**************************************************************************** - * Copyright (c) 2008 Free Software Foundation, Inc. * + * Copyright (c) 2008-2009,2010 Free Software Foundation, Inc. * * * * Permission is hereby granted, free of charge, to any person obtaining a * * copy of this software and associated documentation files (the * @@ -37,7 +37,7 @@ #define USE_LIBTINFO #include -MODULE_ID("$Id: tabs.c,v 1.15 2008/11/23 00:47:51 tom Exp $") +MODULE_ID("$Id: tabs.c,v 1.17 2010/05/01 22:04:08 tom Exp $") static void usage(void) GCC_NORETURN; @@ -210,8 +210,8 @@ trimmed_tab_list(const char *source) ; } else { if (last == ',') - result[k++] = last; - result[k++] = ch; + result[k++] = (char) last; + result[k++] = (char) ch; } last = ch; } @@ -461,7 +461,6 @@ main(int argc, char *argv[]) } } tab_list = add_to_tab_list(&append, option); - option += ((int) strlen(option)) - 1; break; } }