summaryrefslogtreecommitdiff
path: root/Build/source/texk/kpathsea/expand.c
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2009-12-03 00:42:10 +0000
committerKarl Berry <karl@freefriends.org>2009-12-03 00:42:10 +0000
commit67257c18c27c5265b15a55ad61d45da410f2f104 (patch)
treecda7ad04d5508d318053deda2922c990892023d2 /Build/source/texk/kpathsea/expand.c
parent7bc782074dd7cba33ad218494c3693c66a33037d (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/expand.c')
-rw-r--r--Build/source/texk/kpathsea/expand.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/Build/source/texk/kpathsea/expand.c b/Build/source/texk/kpathsea/expand.c
index 0d9d16c7262..943043a666c 100644
--- a/Build/source/texk/kpathsea/expand.c
+++ b/Build/source/texk/kpathsea/expand.c
@@ -1,7 +1,7 @@
/* expand.c: general expansion.
- Copyright 1993, 1994, 1995, 1996, 1997, 1998, 2005, 2008 Karl Berry &
- Olaf Weber.
+ Copyright 1993, 1994, 1995, 1996, 1997, 1998, 2005, 2008, 2009
+ Karl Berry & Olaf Weber.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
@@ -93,7 +93,8 @@ kpathsea_expand_kpse_dot (kpathsea kpse, string path)
boolean ret_copied = true;
/* We assume that the !! magic is only used on absolute components.
Single "." gets special treatment, as does "./" or its equivalent. */
- if (kpathsea_absolute_p (kpse, elt, false) || (elt[0] == '!' && elt[1] == '!')) {
+ if (kpathsea_absolute_p (kpse, elt, false)
+ || (elt[0] == '!' && elt[1] == '!')) {
ret = concat3(ret, elt, ENV_SEP_STRING);
} else if (elt[0] == '.' && elt[1] == 0) {
ret = concat3 (ret, kpse_dot, ENV_SEP_STRING);