more reformatting - label placement
Indent all labels one space. Having uniform placement makes spotting them much easier. (Having no indent at all would impact the change bars of 'git diff'. Those display the last unindented line--which doesn't start with punctuation--occuring before each band of changes, so usually the name of the function being changed now that we no longer have unindented K&R-style function argument declarations.) While in there, shorten or split various wide lines and replace a few tabs with spaces.
This commit is contained in:
@@ -2074,7 +2074,8 @@ struct ext_func_tab extcmdlist[] = {
|
||||
doborn, IFBURIED | WIZMODECMD, NULL },
|
||||
#ifdef DEBUG
|
||||
{ '\0', "wizbury", "bury objs under and around you",
|
||||
wiz_debug_cmd_bury, IFBURIED | AUTOCOMPLETE | WIZMODECMD, NULL },
|
||||
wiz_debug_cmd_bury, IFBURIED | AUTOCOMPLETE | WIZMODECMD,
|
||||
NULL },
|
||||
#endif
|
||||
{ C('e'), "wizdetect", "reveal hidden things within a small radius",
|
||||
wiz_detect, IFBURIED | WIZMODECMD, NULL },
|
||||
@@ -3587,7 +3588,7 @@ rhack(char *cmd)
|
||||
register const struct ext_func_tab *tlist;
|
||||
int res, (*func)(void);
|
||||
|
||||
do_cmdq_extcmd:
|
||||
do_cmdq_extcmd:
|
||||
if (cmdq_ec)
|
||||
tlist = cmdq_ec;
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user