summaryrefslogtreecommitdiff
path: root/command.y
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2011-12-31 20:51:11 +0200
committerArnold D. Robbins <arnold@skeeve.com>2011-12-31 20:51:11 +0200
commita89bd16ff78c74513461af3f676d87d4eb9cfd3c (patch)
tree25977f27d837e3713b52e056f533bcbaba8a4597 /command.y
parenta32faf6354086864b55755c968f72a90e7e8f0d1 (diff)
downloadgawk-a89bd16ff78c74513461af3f676d87d4eb9cfd3c.tar.gz
Remove ancient STREQ, STREQN macros.
Diffstat (limited to 'command.y')
-rw-r--r--command.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/command.y b/command.y
index bcaa74f0..676a545d 100644
--- a/command.y
+++ b/command.y
@@ -1431,7 +1431,7 @@ do_help(CMDARG *arg, int cmd)
i = find_command(name, strlen(name));
if (i >= 0) {
fprintf(out_fp, "%s\n", cmdtab[i].help_txt);
- if (STREQ(cmdtab[i].name, "option"))
+ if (strcmp(cmdtab[i].name, "option") == 0)
option_help();
} else
fprintf(out_fp, _("undefined command: %s\n"), name);