diff --git a/ChangeLog b/ChangeLog index 3ecba3c..0895d45 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5599,3 +5599,7 @@ Tue Jan 6 01:08:47 2009 Michael Jennings (mej) Update copyright dates and fix a bad license. ---------------------------------------------------------------------- +Sun Oct 25 12:08:16 2009 Michael Jennings (mej) + +Fix some bad replacements. +---------------------------------------------------------------------- diff --git a/src/libscream.c b/src/libscream.c index 61482dc..85096e3 100644 --- a/src/libscream.c +++ b/src/libscream.c @@ -2064,7 +2064,7 @@ ns_add_region(_ns_sess * s, _ns_disp * d, int after, char *name) #ifdef NS_HAVE_SCREEN case NS_MODE_SCREEN: /* ret = ns_screen_command(s, "\x01S"); */ - ret = ns_statement(s, "spiftool_split"); + ret = ns_statement(s, "split"); break; #endif } @@ -2719,7 +2719,7 @@ ns_inp_tab(void *xd, char *b, size_t l, size_t m) "resize", "screen", "scrollback", "select", "sessionname", "setenv", "setsid", "shell", "shelltitle", "silence", "silencewait", "sleep", - "slowpast", "source", "sorendition", "spiftool_split", "stuff", + "slowpast", "source", "sorendition", "split", "stuff", "su", "suspend", "term", "termcap", "terminfo", "termcapinfo", "unsetenv", "utf8", "vbell", "vbell_msg", "vbellwait", "verbose", "version", diff --git a/src/options.c b/src/options.c index f4afc99..7cf8a8a 100644 --- a/src/options.c +++ b/src/options.c @@ -382,7 +382,7 @@ usage(void) printf(" (bool) -- Boolean option ('1', 'on', 'yes', or 'true' to activate, '0', 'off', 'no', or 'false' to deactivate)\n"); printf(" (int) -- Integer option (any signed number of reasonable value, usually in decimal/octal/hex)\n"); printf(" (str) -- String option (be sure to quote strings if needed to avoid shell expansion)\n"); - printf(" (strs) -- Stringlist option (quoting strings will be spiftool_split on whitespace)\n\n"); + printf(" (strs) -- Stringlist option (quoting strings will be split on whitespace)\n\n"); printf("NOTE: Long options can be separated from their values by an equal sign ('='), or you can\n"); printf(" pass the value as the following argument on the command line (e.g., '--scrollbar 0'\n");