bindings: add mistakenly removed M-J (Full Justify) back to the main menu

This fixes https://savannah.gnu.org/bugs/?58729.

Bug existed since commit ee03c4b8 from six weeks ago.
master
Benno Schulenberg 2020-07-08 15:41:56 +02:00
parent 727abceb0f
commit 1542cbf942
1 changed files with 1 additions and 0 deletions

View File

@ -1324,6 +1324,7 @@ void shortcut_init(void)
add_to_sclist(MMAIN, "M-D", 0, do_wordlinechar_count, 0);
#endif
#ifdef ENABLE_JUSTIFY
add_to_sclist(MMAIN, "M-J", 0, do_full_justify, 0);
add_to_sclist(MEXECUTE, "^J", 0, do_full_justify, 0);
#endif
#if !defined(NANO_TINY) || defined(ENABLE_HELP)