Index: generic/nsf.c =================================================================== diff -u -r9ae451a203a43950611411ccb52efed5263a4031 -r48963dd0a1c2e72b7b54f70da073e2ae160fa6eb --- generic/nsf.c (.../nsf.c) (revision 9ae451a203a43950611411ccb52efed5263a4031) +++ generic/nsf.c (.../nsf.c) (revision 48963dd0a1c2e72b7b54f70da073e2ae160fa6eb) @@ -8802,7 +8802,7 @@ if (*option == '*' || *option == 'n') { if ((paramPtr->flags & (NSF_ARG_INITCMD|NSF_ARG_RELATION|NSF_ARG_METHOD|NSF_ARG_SWITCH)) != 0) { return NsfPrintError(interp, - "option multivalued not allowed for \"initcmd\", \"method\", \"relation\" or \"switch\"\n"); + "multivalued not allowed for \"initcmd\", \"method\", \"relation\" or \"switch\"\n"); } paramPtr->flags |= NSF_ARG_MULTIVALUED; } else if (*option != '1') { @@ -10424,7 +10424,7 @@ /* No arguments were provided */ objc = 0; } else { - /* in case --noargs is used, remove the flag and provide an empty argument list */ + /* in case --noArgs is used, remove the flag and provide an empty argument list */ CONST char *arg1String = ObjStr(objv[1]); if (*arg1String == '-' && !strcmp(arg1String, "--noArgs")) { objc = 1;