~ubuntu-branches/ubuntu/natty/luatex/natty

« back to all changes in this revision

Viewing changes to source/texk/kpathsea/types.h

  • Committer: Package Import Robot
  • Author(s): Norbert Preining
  • Date: 2010-12-13 23:22:59 UTC
  • mfrom: (0.2.1) (1.5.4) (4.3.12 experimental)
  • Revision ID: package-import@ubuntu.com-20101213232259-nqq2mq5z5x6qldw3
Tags: 0.65.0-1
* new upstream release
* ship two source packages as they are distributed by upstream, only
  renamed to match source package requirements. Fix debian/rules
  to install the manual pdf from the right place

Show diffs side-by-side

added added

removed removed

Lines of Context:
86
86
{
87
87
  kpse_gf_format,
88
88
  kpse_pk_format,
89
 
  kpse_any_glyph_format,        /* ``any'' meaning gf or pk */
 
89
  kpse_any_glyph_format,        /* ``any'' meaning gf or pk */
90
90
  kpse_tfm_format,
91
91
  kpse_afm_format,
92
92
  kpse_base_format,
168
168
 
169
169
typedef struct
170
170
{
171
 
  const_string type;            /* Human-readable description.  */
172
 
  const_string path;            /* The search path to use.  */
173
 
  const_string raw_path;        /* Pre-$~ (but post-default) expansion.  */
174
 
  const_string path_source;     /* Where the path started from.  */
175
 
  const_string override_path;   /* From client environment variable.  */
176
 
  const_string client_path;     /* E.g., from dvips's config.ps.  */
177
 
  const_string cnf_path;        /* From texmf.cnf.  */
178
 
  const_string default_path;    /* If all else fails.  */
179
 
  const_string *suffix;         /* For kpse_find_file to check for/append.  */
180
 
  const_string *alt_suffix;     /* More suffixes to check for.  */
181
 
  boolean suffix_search_only;   /* Only search with a suffix?  */
182
 
  const_string program;         /* ``mktexpk'', etc.  */
183
 
  int argc;                     /* Count of standard arguments.  */
184
 
  const_string *argv;           /* Standard arguments to `program'.  */
185
 
  boolean program_enabled_p;    /* Invoke `program'?  */
 
171
  const_string type;            /* Human-readable description.  */
 
172
  const_string path;            /* The search path to use.  */
 
173
  const_string raw_path;        /* Pre-$~ (but post-default) expansion.  */
 
174
  const_string path_source;     /* Where the path started from.  */
 
175
  const_string override_path;   /* From client environment variable.  */
 
176
  const_string client_path;     /* E.g., from dvips's config.ps.  */
 
177
  const_string cnf_path;        /* From texmf.cnf.  */
 
178
  const_string default_path;    /* If all else fails.  */
 
179
  const_string *suffix;         /* For kpse_find_file to check for/append.  */
 
180
  const_string *alt_suffix;     /* More suffixes to check for.  */
 
181
  boolean suffix_search_only;   /* Only search with a suffix?  */
 
182
  const_string program;         /* ``mktexpk'', etc.  */
 
183
  int argc;                     /* Count of standard arguments.  */
 
184
  const_string *argv;           /* Standard arguments to `program'.  */
 
185
  boolean program_enabled_p;    /* Invoke `program'?  */
186
186
  kpse_src_type program_enable_level; /* Who said to invoke `program'.  */
187
187
  boolean binmode;              /* Open files in binary mode?  */
188
188
} kpse_format_info_type;