in help_init(), adjust the first two chunks of the main help text so
that they're no more than 509 characters again git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3843 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
5a22dbb159
commit
5c55e85410
|
@ -134,6 +134,9 @@ CVS code -
|
||||||
- Simplify screen update handling and exiting. (DLR)
|
- Simplify screen update handling and exiting. (DLR)
|
||||||
- Don't allow moving down a page when the last line of the help
|
- Don't allow moving down a page when the last line of the help
|
||||||
text is onscreen. (DLR)
|
text is onscreen. (DLR)
|
||||||
|
help_init()
|
||||||
|
- Adjust the first two chunks of the main help text so that
|
||||||
|
they're no more than 509 characters again. (DLR)
|
||||||
- move.c:
|
- move.c:
|
||||||
do_scroll_up(), do_scroll_down()
|
do_scroll_up(), do_scroll_down()
|
||||||
- Fix problems where, after scrolling, the previous and current
|
- Fix problems where, after scrolling, the previous and current
|
||||||
|
|
19
src/help.c
19
src/help.c
|
@ -364,15 +364,16 @@ void help_init(void)
|
||||||
"has been modified. Next is the main editor window "
|
"has been modified. Next is the main editor window "
|
||||||
"showing the file being edited. The status line is "
|
"showing the file being edited. The status line is "
|
||||||
"the third line from the bottom and shows important "
|
"the third line from the bottom and shows important "
|
||||||
"messages. The bottom two lines show the most "
|
"messages. ");
|
||||||
"commonly used shortcuts in the editor.\n\n");
|
htx[1] = N_("The bottom two lines show the most commonly used "
|
||||||
htx[1] = N_(" The notation for shortcuts is as follows: "
|
"shortcuts in the editor.\n\n The notation for "
|
||||||
"Control-key sequences are notated with a caret (^) "
|
"shortcuts is as follows: Control-key sequences are "
|
||||||
"symbol and can be entered either by using the Control "
|
"notated with a caret (^) symbol and can be entered "
|
||||||
"(Ctrl) key or pressing the Escape (Esc) key twice. "
|
"either by using the Control (Ctrl) key or pressing "
|
||||||
"Escape-key sequences are notated with the Meta (M-) "
|
"the Escape (Esc) key twice. Escape-key sequences are "
|
||||||
"symbol and can be entered using either the Esc, Alt, "
|
"notated with the Meta (M-) symbol and can be entered "
|
||||||
"or Meta key depending on your keyboard setup. ");
|
"using either the Esc, Alt, or Meta key depending on "
|
||||||
|
"your keyboard setup. ");
|
||||||
htx[2] = N_("Also, pressing Esc twice and then typing a "
|
htx[2] = N_("Also, pressing Esc twice and then typing a "
|
||||||
"three-digit decimal number from 000 to 255 will enter "
|
"three-digit decimal number from 000 to 255 will enter "
|
||||||
"the character with the corresponding value. The "
|
"the character with the corresponding value. The "
|
||||||
|
|
Loading…
Reference in New Issue