~ubuntu-branches/ubuntu/saucy/xterm/saucy-proposed

« back to all changes in this revision

Viewing changes to input.c

  • Committer: Bazaar Package Importer
  • Author(s): Bryce Harrington
  • Date: 2009-01-26 17:27:49 UTC
  • mfrom: (1.1.12 upstream) (11.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20090126172749-g3090hpie2zhpk03
Tags: 239-1ubuntu1
* Merge from debian unstable, remaining changes:
  - Enabled URL hilighting
  - rm -rf for .pc patches

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $XTermId: input.c,v 1.302 2008/12/30 17:20:39 tom Exp $ */
 
1
/* $XTermId: input.c,v 1.303 2009/01/08 23:28:36 tom Exp $ */
2
2
 
3
3
/*
4
 
 * Copyright 1999-2007,2008 by Thomas E. Dickey
 
4
 * Copyright 1999-2008,2009 by Thomas E. Dickey
5
5
 *
6
6
 *                         All Rights Reserved
7
7
 *
984
984
#ifdef XK_KP_Home
985
985
        if (kd.keysym >= XK_KP_Home && kd.keysym <= XK_KP_Begin) {
986
986
            TRACE(("...Input keypad before was " KEYSYM_FMT "\n", kd.keysym));
987
 
            kd.keysym += (unsigned) (XK_Home - XK_KP_Home);
 
987
            kd.keysym += (KeySym) (XK_Home - XK_KP_Home);
988
988
            TRACE(("...Input keypad changed to " KEYSYM_FMT "\n", kd.keysym));
989
989
        }
990
990
#endif