diff options
author | Baptiste Jonglez <baptiste--git@jonglez.org> | 2012-05-13 14:21:29 +0200 |
---|---|---|
committer | Lukas Fleischer <calcurse@cryptocrack.de> | 2012-05-14 19:32:18 +0200 |
commit | 2951cf832034053d02fee97cc8e4a1f5748578c8 (patch) | |
tree | 1a9681ca94a0bceda93c03fb4733cc0676092a26 | |
parent | d6e551c1a528233bf60c056642a4a5e20f199dfa (diff) | |
download | calcurse-2951cf832034053d02fee97cc8e4a1f5748578c8.zip |
Add dummy help for cut and paste
It looks like cutting and pasting are only half-implemented: this only
avoids a segfault when trying to get help on these functions.
Signed-off-by: Baptiste Jonglez <baptiste--git@jonglez.org>
Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
-rw-r--r-- | src/keys.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -481,6 +481,10 @@ keys_popup_info (enum key key) _("Exit from the current menu, or quit calcurse."); info[KEY_GENERIC_SAVE] = _("Save calcurse data."); + info[KEY_GENERIC_CUT] = + _("Help for `generic-cut`."); + info[KEY_GENERIC_PASTE] = + _("Help for `generic-paste`."); info[KEY_GENERIC_CHANGE_VIEW] = _("Select next panel in calcurse main screen."); info[KEY_GENERIC_IMPORT] = |