diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2000-04-20 02:12:34 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2000-04-20 02:12:34 -0400 |
commit | a90a9a4015c486328a52144c0f2fc785488d5dd6 (patch) | |
tree | 540c0e02a38f9b0571b08cd7f998a3fdcb70eab4 /src/LYMainLoop.c | |
parent | 3083c9f22030c0a3001682f372370c96f42b5299 (diff) | |
download | lynx-snapshots-a90a9a4015c486328a52144c0f2fc785488d5dd6.tar.gz |
snapshot of project "lynx", label v2-8-3pre_7
Diffstat (limited to 'src/LYMainLoop.c')
-rw-r--r-- | src/LYMainLoop.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/LYMainLoop.c b/src/LYMainLoop.c index 040a705d..0e15f59b 100644 --- a/src/LYMainLoop.c +++ b/src/LYMainLoop.c @@ -7590,13 +7590,13 @@ PRIVATE void status_link ARGS3( *format = 0; if (show_more) { sprintf(format, "%.*s ", - (int)(sizeof(format) - 1), + (int)(sizeof(format) - 2), gettext("-more-")); prefix = strlen(format); } if (show_indx) { sprintf(format + prefix, "%.*s ", - (int)(sizeof(format) - prefix - 1), + (int)(sizeof(format) - prefix - 2), gettext("-index-")); } prefix = strlen(format); |