miscellaneous documentation fixes
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3192 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
4580f1502c
commit
29fb951fcd
|
@ -103,7 +103,7 @@ CVS code -
|
||||||
- Rename the NANO_SMALL #define to NANO_TINY. (DLR)
|
- Rename the NANO_SMALL #define to NANO_TINY. (DLR)
|
||||||
- Overhaul the bracket searching code so that it no longer
|
- Overhaul the bracket searching code so that it no longer
|
||||||
requires regex support to work. New functions revstrpbrk()
|
requires regex support to work. New functions revstrpbrk()
|
||||||
and find_bracket_match(); changes to sc_init_one() and
|
and find_bracket_match(); changes to shortcut_init() and
|
||||||
do_find_bracket(). (DLR)
|
do_find_bracket(). (DLR)
|
||||||
- Add the ability to do bracket searches at the statusbar
|
- Add the ability to do bracket searches at the statusbar
|
||||||
prompt. New function do_statusbar_find_bracket(); changes to
|
prompt. New function do_statusbar_find_bracket(); changes to
|
||||||
|
@ -130,6 +130,10 @@ CVS code -
|
||||||
- Store the value of digits(ULONG_MAX) in a static, since it
|
- Store the value of digits(ULONG_MAX) in a static, since it
|
||||||
doesn't change and hence doesn't need to be recalculated.
|
doesn't change and hence doesn't need to be recalculated.
|
||||||
(DLR)
|
(DLR)
|
||||||
|
- global.c:
|
||||||
|
shortcut_init()
|
||||||
|
- Change the description of the Meta-] shortcut to "Find
|
||||||
|
matching bracket", as it's clearer. (DLR)
|
||||||
- nano.c:
|
- nano.c:
|
||||||
do_verbatim_input()
|
do_verbatim_input()
|
||||||
- Move to text.c, since it's an advanced text-based operation.
|
- Move to text.c, since it's an advanced text-based operation.
|
||||||
|
|
|
@ -314,7 +314,7 @@ void shortcut_init(bool unjustify)
|
||||||
const char *nano_fulljustify_msg = N_("Justify the entire file");
|
const char *nano_fulljustify_msg = N_("Justify the entire file");
|
||||||
#endif
|
#endif
|
||||||
#ifndef NANO_TINY
|
#ifndef NANO_TINY
|
||||||
const char *nano_bracket_msg = N_("Find other bracket");
|
const char *nano_bracket_msg = N_("Find matching bracket");
|
||||||
#endif
|
#endif
|
||||||
const char *nano_cancel_msg = N_("Cancel the current function");
|
const char *nano_cancel_msg = N_("Cancel the current function");
|
||||||
const char *nano_firstline_msg =
|
const char *nano_firstline_msg =
|
||||||
|
|
Loading…
Reference in New Issue