document keeping meta sequences from getting through to do_char() in the
changelog, and update a related comment git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1936 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
f887298c6e
commit
807657b0fe
|
@ -71,6 +71,8 @@ CVS code -
|
||||||
do_para_begin(), do_para_end()
|
do_para_begin(), do_para_end()
|
||||||
- Maintain current_y's value when moving up or down lines so
|
- Maintain current_y's value when moving up or down lines so
|
||||||
that smooth scrolling works correctly. (DLR)
|
that smooth scrolling works correctly. (DLR)
|
||||||
|
main()
|
||||||
|
- Don't let meta sequences get through to do_char(). (DLR)
|
||||||
- nano.h:
|
- nano.h:
|
||||||
- Add WIDTH_OF_TAB #define, containing the default width of a
|
- Add WIDTH_OF_TAB #define, containing the default width of a
|
||||||
tab. (DLR)
|
tab. (DLR)
|
||||||
|
|
|
@ -3493,8 +3493,8 @@ int main(int argc, char **argv)
|
||||||
|
|
||||||
/* Last gasp, stuff that's not in the main lists. */
|
/* Last gasp, stuff that's not in the main lists. */
|
||||||
if (kbinput != ERR && !meta_key && !is_cntrl_char(kbinput)) {
|
if (kbinput != ERR && !meta_key && !is_cntrl_char(kbinput)) {
|
||||||
/* Don't stop unhandled sequences, so that people with odd
|
/* Don't stop unhandled printable sequences, so that people
|
||||||
* character sets can type. */
|
* with odd character sets can type. */
|
||||||
if (ISSET(VIEW_MODE))
|
if (ISSET(VIEW_MODE))
|
||||||
print_view_warning();
|
print_view_warning();
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue