~ubuntu-branches/ubuntu/dapper/groff/dapper

« back to all changes in this revision

Viewing changes to src/xditview/DviP.h

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2002-03-17 04:11:50 UTC
  • Revision ID: james.westby@ubuntu.com-20020317041150-em69nkqd2qw26v96
Tags: 1.17.2-15.woody.1
* New Danish debconf translation (thanks, Rune B. Broberg;
  closes: #131092).
* New French debconf translation (thanks, Philippe Batailler;
  closes: #138515).

Show diffs side-by-side

added added

removed removed

Lines of Context:
89
89
#define DVI_CHAR_CACHE_SIZE     1024
90
90
 
91
91
typedef struct _dviCharCache {
 
92
#if 0 /* def    NIPPON */
 
93
        XTextItem16     cache[DVI_TEXT_CACHE_SIZE];
 
94
#else
92
95
        XTextItem       cache[DVI_TEXT_CACHE_SIZE];
 
96
#endif
93
97
        char            adjustable[DVI_TEXT_CACHE_SIZE];
 
98
#if 0 /* def    NIPPON */
 
99
        XChar2b         char_cache[DVI_CHAR_CACHE_SIZE];
 
100
#else
94
101
        char            char_cache[DVI_CHAR_CACHE_SIZE];
 
102
#endif
95
103
        int             index;
96
104
        int             max;
97
105
        int             char_index;