clarify the description of the line wrapping toggle

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2718 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
master
David Lawrence Ramsey 2005-06-18 03:03:32 +00:00
parent 84635cd8e8
commit d873447f5f
2 changed files with 3 additions and 2 deletions

View File

@ -178,7 +178,7 @@ CVS code -
- Change the description of the Meta-B toggle at the search - Change the description of the Meta-B toggle at the search
prompt from "Direction" to "Backwards", for consistency. (DLR) prompt from "Direction" to "Backwards", for consistency. (DLR)
toggle_init() toggle_init()
- Clarify the description of M-C. (DLR) - Clarify the descriptions of M-C and M-L. (DLR)
thanks_for_all_the_fish() thanks_for_all_the_fish()
- Remove free_toggles() and move its code here verbatim, as it's - Remove free_toggles() and move its code here verbatim, as it's
only called here anyway. (David Benbennick) only called here anyway. (David Benbennick)

View File

@ -1117,7 +1117,8 @@ void toggle_init(void)
toggle_init_one(TOGGLE_AUTOINDENT_KEY, N_("Auto indent"), toggle_init_one(TOGGLE_AUTOINDENT_KEY, N_("Auto indent"),
AUTOINDENT); AUTOINDENT);
#ifndef DISABLE_WRAPPING #ifndef DISABLE_WRAPPING
toggle_init_one(TOGGLE_WRAP_KEY, N_("Auto line wrap"), NO_WRAP); toggle_init_one(TOGGLE_WRAP_KEY, N_("Long line wrapping"),
NO_WRAP);
#endif #endif
toggle_init_one(TOGGLE_CUTTOEND_KEY, N_("Cut to end"), CUT_TO_END); toggle_init_one(TOGGLE_CUTTOEND_KEY, N_("Cut to end"), CUT_TO_END);
/* If we're using restricted mode, the suspend toggle is disabled. /* If we're using restricted mode, the suspend toggle is disabled.