whitespace when setting a var_filename.
+2007-05-10 Chris Dearman <chris@mips.com>
+ Maciej W. Rozycki <macro@mips.com>
+
+ * cli/cli-setshow.c (do_setshow_command): Remove trailing
+ whitespace when setting a var_filename.
+
2007-05-09 Bob Wilson <bob.wilson@acm.org>
* main.c (captured_main): Recognize -tui option and print an error
error_no_arg (_("filename to set it to."));
if (*(char **) c->var != NULL)
xfree (*(char **) c->var);
+ {
+ /* Clear trailing whitespace of filename. */
+ char *ptr = arg + strlen (arg) - 1;
+ while (ptr >= arg && (*ptr == ' ' || *ptr == '\t'))
+ ptr--;
+ *(ptr + 1) = '\0';
+ }
*(char **) c->var = tilde_expand (arg);
break;
case var_boolean: