~ubuntu-branches/ubuntu/precise/xterm/precise-updates

« back to all changes in this revision

Viewing changes to xtermcap.c

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt
  • Date: 2011-06-17 10:40:36 UTC
  • mfrom: (1.5.5 upstream)
  • mto: This revision was merged to the branch mainline in revision 34.
  • Revision ID: james.westby@ubuntu.com-20110617104036-bvog7d89aos7gu5s
Tags: upstream-270
ImportĀ upstreamĀ versionĀ 270

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $XTermId: xtermcap.c,v 1.44 2010/06/13 17:46:27 tom Exp $ */
 
1
/* $XTermId: xtermcap.c,v 1.45 2011/02/19 20:28:13 tom Exp $ */
2
2
 
3
3
/*
4
 
 * Copyright 2007-2009,2010 by Thomas E. Dickey
 
4
 * Copyright 2007-2010,2011 by Thomas E. Dickey
5
5
 *
6
6
 *                         All Rights Reserved
7
7
 *
613
613
void
614
614
free_termcap(XtermWidget xw)
615
615
{
 
616
#if OPT_TCAP_FKEYS
616
617
    TScreen *screen = TScreenOf(xw);
617
618
 
618
619
    if (screen->tcap_fkeys != 0) {
629
630
        free(screen->tcap_fkeys);
630
631
        screen->tcap_fkeys = 0;
631
632
    }
 
633
#endif
632
634
}