diff options
author | Karl Berry <karl@freefriends.org> | 2009-12-03 00:42:10 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2009-12-03 00:42:10 +0000 |
commit | 67257c18c27c5265b15a55ad61d45da410f2f104 (patch) | |
tree | cda7ad04d5508d318053deda2922c990892023d2 /Build/source/texk/kpathsea/kpsewhich.c | |
parent | 7bc782074dd7cba33ad218494c3693c66a33037d (diff) |
formatting/doc fixes
git-svn-id: svn://tug.org/texlive/trunk@16274 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea/kpsewhich.c')
-rw-r--r-- | Build/source/texk/kpathsea/kpsewhich.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Build/source/texk/kpathsea/kpsewhich.c b/Build/source/texk/kpathsea/kpsewhich.c index a4cf22ce528..33b6d327ae7 100644 --- a/Build/source/texk/kpathsea/kpsewhich.c +++ b/Build/source/texk/kpathsea/kpsewhich.c @@ -149,7 +149,7 @@ find_format (kpathsea kpse, string name, boolean is_filename) for (ext = kpse->format_info[f].suffix; !found && ext && *ext; ext++) { found = TRY_SUFFIX (*ext); } - for (ext = kpse->format_info[f].alt_suffix; !found && ext && *ext; ext++){ + for (ext=kpse->format_info[f].alt_suffix; !found && ext && *ext; ext++) { found = TRY_SUFFIX (*ext); } @@ -269,8 +269,8 @@ lookup (kpathsea kpse, string name) unsigned local_dpi = find_dpi (name); if (!local_dpi) local_dpi = dpi; - ret = kpathsea_find_glyph (kpse, remove_suffix (name), local_dpi, fmt, - &glyph_ret); + ret = kpathsea_find_glyph (kpse, remove_suffix (name), + local_dpi, fmt, &glyph_ret); } break; @@ -281,7 +281,8 @@ lookup (kpathsea kpse, string name) default: if (show_all) { - ret_list = kpathsea_find_file_generic (kpse, name, fmt, must_exist, true); + ret_list = kpathsea_find_file_generic (kpse, name, fmt, + must_exist, true); } else { ret = kpathsea_find_file (kpse, name, fmt, must_exist); } |