2012-08-06  Nathaniel Flath  <flat0103@gmail.com>
	* NEWS: New entry for 'cd' default parameters.
	* cli/cli-cmds.c (cd_command): Replace error_no_arg by DIR assignment.

gdb/doc/
2012-08-06  Nathaniel Flath  <flat0103@gmail.com>
	* gdb.texinfo (Working Directory): Added information about new
	default argument for 'cd' command.
This commit is contained in:
Jan Kratochvil
2012-08-06 17:13:27 +00:00
parent 77a9102503
commit f3c8a52ace
5 changed files with 17 additions and 3 deletions

View File

@@ -365,7 +365,7 @@ cd_command (char *dir, int from_tty)
dont_repeat ();
if (dir == 0)
error_no_arg (_("new working directory"));
dir = "~";
dir = tilde_expand (dir);
make_cleanup (xfree, dir);