mirror of
git://git.sv.gnu.org/nano.git
synced 2024-12-26 20:29:46 +03:00
- rcfile.c: - Fix incorrect argument in fill and tabsize error message (Nathan Heagy)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@828 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
This commit is contained in:
parent
f57b886bed
commit
ca1a82ecab
@ -74,6 +74,8 @@ CVS code -
|
|||||||
- rcfile.c:
|
- rcfile.c:
|
||||||
- NUM_RCOPTS fix (DLR).
|
- NUM_RCOPTS fix (DLR).
|
||||||
- Add tabsize support to rc file (Nathan Heagy).
|
- Add tabsize support to rc file (Nathan Heagy).
|
||||||
|
- Fix incorrect argument in fill and tabsize error message
|
||||||
|
(Nathan Heagy)
|
||||||
- search.c:
|
- search.c:
|
||||||
- Changed search prompt to "Search" followed by a list of
|
- Changed search prompt to "Search" followed by a list of
|
||||||
bracketed, free-standing modifiers that do not imply a grammar,
|
bracketed, free-standing modifiers that do not imply a grammar,
|
||||||
|
4
rcfile.c
4
rcfile.c
@ -194,7 +194,7 @@ void parse_rcfile(FILE *rcstream, char *filename)
|
|||||||
if ((i = atoi(option)) < MIN_FILL_LENGTH) {
|
if ((i = atoi(option)) < MIN_FILL_LENGTH) {
|
||||||
rcfile_msg(&errors,
|
rcfile_msg(&errors,
|
||||||
_("Error in %s on line %d: requested fill size %d too small"),
|
_("Error in %s on line %d: requested fill size %d too small"),
|
||||||
filename, lineno, option);
|
filename, lineno, i);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
fill = i;
|
fill = i;
|
||||||
@ -203,7 +203,7 @@ void parse_rcfile(FILE *rcstream, char *filename)
|
|||||||
if ((i = atoi(option)) <= 0) {
|
if ((i = atoi(option)) <= 0) {
|
||||||
rcfile_msg(&errors,
|
rcfile_msg(&errors,
|
||||||
_("Error in %s on line %d: requested tab size %d too small"),
|
_("Error in %s on line %d: requested tab size %d too small"),
|
||||||
filename, lineno, option);
|
filename, lineno, i);
|
||||||
} else {
|
} else {
|
||||||
tabsize = i;
|
tabsize = i;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user