diff options
author | Lukas Fleischer <calcurse@cryptocrack.de> | 2012-06-27 09:50:19 +0200 |
---|---|---|
committer | Lukas Fleischer <calcurse@cryptocrack.de> | 2012-06-30 14:34:36 +0200 |
commit | 57c4f9d8ea3bf760eac418fa31b5c0ff72e786fb (patch) | |
tree | 6d1b65045dcc262eb11466ab84808d559ddf697e /src/apoint.c | |
parent | 6907ae73e76d11c201ff237663af79b3bbfc5385 (diff) | |
download | calcurse-57c4f9d8ea3bf760eac418fa31b5c0ff72e786fb.zip |
Remove legacy cut/paste code
Note that this doesn't remove *_dup() since these might still be needed
later.
Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
Diffstat (limited to 'src/apoint.c')
-rw-r--r-- | src/apoint.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/apoint.c b/src/apoint.c index c8bc1f8..57223bc 100644 --- a/src/apoint.c +++ b/src/apoint.c @@ -42,18 +42,8 @@ #include "calcurse.h" llist_ts_t alist_p; -static struct apoint bkp_cut_apoint; static int hilt; -void apoint_free_bkp(void) -{ - if (bkp_cut_apoint.mesg) { - mem_free(bkp_cut_apoint.mesg); - bkp_cut_apoint.mesg = 0; - } - erase_note(&bkp_cut_apoint.note); -} - void apoint_free(struct apoint *apt) { mem_free(apt->mesg); |