~ubuntu-branches/ubuntu/trusty/xterm/trusty-proposed

« 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.4.12 upstream) (11.1.26 sid)
  • Revision ID: james.westby@ubuntu.com-20110617104036-id4ml81yetasewp9
Tags: 270-1ubuntu1
* Merge from debian unstable.  Remaining changes:
  - debian/patches/950_ubuntu_charclass_highlight.diff: Enabled URL
    highlighting
  - debian/patches/Add 951_uxterm_utf8_title.diff: Set utf8Titles to true by
    default when using uxterm, so that it displays utf8 directories in titles
    properly.  May cause issues with apps that use control sequences for
    updating the xterm titlebar - users should use xterm or set utf8Title
    to false in this case.
  - debian/gbp.conf: Use "Ubuntu" in "debian-branch" directly

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
}