- rcfile.c:
- NUM_RCOPTS fix (DLR).
- Add tabsize support to rc file (Nathan Heagy).
+ - Fix incorrect argument in fill and tabsize error message
+ (Nathan Heagy)
- search.c:
- Changed search prompt to "Search" followed by a list of
bracketed, free-standing modifiers that do not imply a grammar,
if ((i = atoi(option)) < MIN_FILL_LENGTH) {
rcfile_msg(&errors,
_("Error in %s on line %d: requested fill size %d too small"),
- filename, lineno, option);
+ filename, lineno, i);
}
else
fill = i;
if ((i = atoi(option)) <= 0) {
rcfile_msg(&errors,
_("Error in %s on line %d: requested tab size %d too small"),
- filename, lineno, option);
+ filename, lineno, i);
} else {
tabsize = i;
}