[svn] Report exact command name alongside the "display name".

This commit is contained in:
hniksic 2005-05-21 06:36:43 -07:00
parent 1aca2ff28e
commit 724e2f84be
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-05-21 Hrvoje Niksic <hniksic@xemacs.org>
* init.c (setval_internal): Report exact command name alongside
the "display name".
2005-05-18 Hrvoje Niksic <hniksic@xemacs.org>
* cookies.c (update_cookie_field): Explicitly cast -1 to time_t to

View File

@ -612,7 +612,7 @@ static int
setval_internal (int comind, const char *com, const char *val)
{
assert (0 <= comind && comind < countof (commands));
DEBUGP (("Setting %s (%d) to %s\n", com, comind, val));
DEBUGP (("Setting %s (%s) to %s\n", com, commands[comind].name, val));
return ((*commands[comind].action) (com, val, commands[comind].place));
}