diff options
author | Karl Berry <karl@freefriends.org> | 2010-04-09 00:50:48 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2010-04-09 00:50:48 +0000 |
commit | cfcef1bdf73cf6fd10bfb6a72e79ae7e1bd656af (patch) | |
tree | e345bdd5543c124e7e3691c72891828b8ec2000e /Build | |
parent | 726f8c6e6b594ca51d93031a6b2124e463a0efa9 (diff) |
doc fixes
git-svn-id: svn://tug.org/texlive/trunk@17762 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rw-r--r-- | Build/source/texk/kpathsea/ChangeLog | 4 | ||||
-rw-r--r-- | Build/source/texk/kpathsea/types.h | 32 |
2 files changed, 18 insertions, 18 deletions
diff --git a/Build/source/texk/kpathsea/ChangeLog b/Build/source/texk/kpathsea/ChangeLog index 15c12c17f95..4656233039a 100644 --- a/Build/source/texk/kpathsea/ChangeLog +++ b/Build/source/texk/kpathsea/ChangeLog @@ -1,3 +1,7 @@ +2010-04-09 Karl Berry <karl@tug.org> + + * types.h: doc fixes. + 2010-04-05 Karl Berry <karl@tug.org> * progname.h: doc fix. diff --git a/Build/source/texk/kpathsea/types.h b/Build/source/texk/kpathsea/types.h index 9def695edbd..d53f08395ec 100644 --- a/Build/source/texk/kpathsea/types.h +++ b/Build/source/texk/kpathsea/types.h @@ -180,19 +180,19 @@ typedef struct const_string *alt_suffix; /* More suffixes to check for. */ boolean suffix_search_only; /* Only search with a suffix? */ const_string program; /* ``mktexpk'', etc. */ - int argc; /* Count of standard arguments. */ + int argc; /* Count of standard arguments. */ const_string *argv; /* Standard arguments to `program'. */ boolean program_enabled_p; /* Invoke `program'? */ kpse_src_type program_enable_level; /* Who said to invoke `program'. */ - boolean binmode; /* The files must be opened in binary mode. */ + boolean binmode; /* Open files in binary mode? */ } kpse_format_info_type; typedef struct kpathsea_instance *kpathsea; typedef struct kpathsea_instance { /* from cnf.c */ - p_record_input record_input; /* for --recorder */ - p_record_output record_output; /* for --recorder */ + p_record_input record_input; /* for --recorder */ + p_record_output record_output; /* for --recorder */ hash_table_type cnf_hash; /* used by read_all_cnf */ boolean doing_cnf_init; /* for kpse_cnf_get */ /* from db.c */ @@ -223,37 +223,33 @@ typedef struct kpathsea_instance { /* from progname.c */ string invocation_name; string invocation_short_name; - string program_name; /* pretended name */ + string program_name; /* pretended name */ int ll_verbose; /* for symlinks (conditional) */ /* from tex-file.c */ /* If non-NULL, try looking for this if can't find the real font. */ const_string fallback_font; /* If non-NULL, default list of fallback resolutions comes from this - * instead of the compile-time value. Set by dvipsk for the R config - * cmd. *SIZES environment variables override/use as default. - */ + instead of the compile-time value. Set by dvipsk for the R config + cmd. *SIZES environment variables override/use as default. */ const_string fallback_resolutions_string; /* If non-NULL, check these if can't find (within a few percent of) the - * given resolution. List must end with a zero element. - */ + given resolution. List must end with a zero element. */ unsigned *fallback_resolutions; kpse_format_info_type format_info[kpse_last_format]; /* from tex-make.c */ /* We never throw away stdout, since that is supposed to be the filename - * found, if all is successful. This variable controls whether stderr - * is thrown away. - */ + found, if all is successful. This variable controls whether stderr + is thrown away. */ boolean make_tex_discard_errors; FILE *missfont; /* from variable.c */ - expansion_type *expansions; /* The sole variable of this type. */ + expansion_type *expansions; /* sole variable of this type */ unsigned expansion_len ; /* from xputenv.c */ /* These record the strings we've set and have to keep around. - * This function can be called many times during a run, and this - * allows us to reclaim memory we allocated. - */ - char **saved_env; /* these keep track of changed items */ + This function can be called many times during a run, and this + allows us to reclaim memory we allocated. */ + char **saved_env; /* keep track of changed items */ int saved_count; #if defined(WIN32) || defined(__MINGW32__) || defined(__CYGWIN__) char **suffixlist; |