~ubuntu-branches/ubuntu/natty/ncurses/natty

« back to all changes in this revision

Viewing changes to ncurses/trace/lib_tracedmp.c

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2007-05-17 09:00:42 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20070517090042-86fgxrr6j5jzagot
Tags: 5.6-0ubuntu1
* New upstream version.
  - Remove patches applied upstream: ncurses.upstream, signed-chars.
  - Update patches: debian-backspace.
* Build-depend on g++-multilib instead of lib{32,64}c*-dev-*.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/****************************************************************************
2
 
 * Copyright (c) 1998-2002,2005 Free Software Foundation, Inc.              *
 
2
 * Copyright (c) 1998-2005,2006 Free Software Foundation, Inc.              *
3
3
 *                                                                          *
4
4
 * Permission is hereby granted, free of charge, to any person obtaining a  *
5
5
 * copy of this software and associated documentation files (the            *
39
39
#include <curses.priv.h>
40
40
#include <ctype.h>
41
41
 
42
 
MODULE_ID("$Id: lib_tracedmp.c,v 1.26 2005/01/29 16:23:51 tom Exp $")
 
42
MODULE_ID("$Id: lib_tracedmp.c,v 1.27 2006/10/14 20:43:31 tom Exp $")
43
43
 
44
44
#ifdef TRACE
45
45
NCURSES_EXPORT(void)
93
93
                : '?';
94
94
        }
95
95
        ep[j] = '\0';
96
 
        _tracef("%s[%2d] %3d%3d ='%s'",
 
96
        _tracef("%s[%2d] %3ld%3ld ='%s'",
97
97
                name, n,
98
 
                win->_line[n].firstchar,
99
 
                win->_line[n].lastchar,
 
98
                (long) win->_line[n].firstchar,
 
99
                (long) win->_line[n].lastchar,
100
100
                ep);
101
101
 
102
102
        /* dump A_COLOR part, will screw up if there are more than 96 */