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

« back to all changes in this revision

Viewing changes to data.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: data.c,v 1.91 2009/10/12 00:33:20 tom Exp $ */
 
1
/* $XTermId: data.c,v 1.92 2011/02/13 19:59:23 tom Exp $ */
2
2
 
3
3
/*
4
 
 * Copyright 2002-2006,2007 by Thomas E. Dickey
 
4
 * Copyright 2002-2009,2011 by Thomas E. Dickey
5
5
 *
6
6
 *                         All Rights Reserved
7
7
 *
90
90
 
91
91
XtAppContext app_con;
92
92
XtermWidget term;               /* master data structure for client */
93
 
char *xterm_name;               /* argv[0] */
94
93
 
95
94
int hold_screen;
96
95
SIG_ATOMIC_T need_cleanup = False;