diff options
author | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2010-05-16 02:46:08 +0000 |
---|---|---|
committer | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2010-05-16 02:46:08 +0000 |
commit | 73d8bb8f989275d57b542a0e7a7b93fed0fee42a (patch) | |
tree | 195aa8006f7783234b21c0ee2087c119cecb4c82 /Build/source/texk/kpathsea/lib.h | |
parent | 7b6a65e6e41163c0740ea26d6c2696be898e67a3 (diff) |
untabify.
git-svn-id: svn://tug.org/texlive/trunk@18285 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea/lib.h')
-rw-r--r-- | Build/source/texk/kpathsea/lib.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/Build/source/texk/kpathsea/lib.h b/Build/source/texk/kpathsea/lib.h index ca1644c94fa..c6cafef7187 100644 --- a/Build/source/texk/kpathsea/lib.h +++ b/Build/source/texk/kpathsea/lib.h @@ -53,9 +53,9 @@ #define END_FATAL() fputs (".\n", stderr); exit (1); } while (0) -#define FATAL(str) \ +#define FATAL(str) \ START_FATAL (); fputs (str, stderr); END_FATAL () -#define FATAL1(str, e1) \ +#define FATAL1(str, e1) \ START_FATAL (); fprintf (stderr, str, e1); END_FATAL () #define FATAL2(str, e1, e2) \ START_FATAL (); fprintf (stderr, str, e1, e2); END_FATAL () @@ -71,25 +71,25 @@ #define START_WARNING() do { fputs ("warning: ", stderr) #define END_WARNING() fputs (".\n", stderr); fflush (stderr); } while (0) -#define WARNING(str) \ +#define WARNING(str) \ START_WARNING (); fputs (str, stderr); END_WARNING () -#define WARNING1(str, e1) \ +#define WARNING1(str, e1) \ START_WARNING (); fprintf (stderr, str, e1); END_WARNING () -#define WARNING2(str, e1, e2) \ +#define WARNING2(str, e1, e2) \ START_WARNING (); fprintf (stderr, str, e1, e2); END_WARNING () -#define WARNING3(str, e1, e2, e3) \ +#define WARNING3(str, e1, e2, e3) \ START_WARNING (); fprintf (stderr, str, e1, e2, e3); END_WARNING () -#define WARNING4(str, e1, e2, e3, e4) \ +#define WARNING4(str, e1, e2, e3, e4) \ START_WARNING (); fprintf (stderr, str, e1, e2, e3, e4); END_WARNING () #define LIB_START_FATAL() do { \ fprintf (stderr, "%s: fatal: ", kpse->invocation_name); -#define LIB_FATAL(str) \ +#define LIB_FATAL(str) \ LIB_START_FATAL (); fputs (str, stderr); END_FATAL () -#define LIB_FATAL1(str, e1) \ +#define LIB_FATAL1(str, e1) \ LIB_START_FATAL (); fprintf (stderr, str, e1); END_FATAL () -#define LIB_FATAL2(str, e1, e2) \ +#define LIB_FATAL2(str, e1, e2) \ LIB_START_FATAL (); fprintf (stderr, str, e1, e2); END_FATAL () |