summaryrefslogtreecommitdiff
path: root/Build/source/texk/kpathsea/debug.h
diff options
context:
space:
mode:
authorAkira Kakuto <kakuto@fuk.kindai.ac.jp>2010-05-16 02:46:08 +0000
committerAkira Kakuto <kakuto@fuk.kindai.ac.jp>2010-05-16 02:46:08 +0000
commit73d8bb8f989275d57b542a0e7a7b93fed0fee42a (patch)
tree195aa8006f7783234b21c0ee2087c119cecb4c82 /Build/source/texk/kpathsea/debug.h
parent7b6a65e6e41163c0740ea26d6c2696be898e67a3 (diff)
untabify.
git-svn-id: svn://tug.org/texlive/trunk@18285 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea/debug.h')
-rw-r--r--Build/source/texk/kpathsea/debug.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/Build/source/texk/kpathsea/debug.h b/Build/source/texk/kpathsea/debug.h
index 45180646c12..bb0ab7fbc1c 100644
--- a/Build/source/texk/kpathsea/debug.h
+++ b/Build/source/texk/kpathsea/debug.h
@@ -65,28 +65,28 @@
#endif /* KPSE_COMPAT_API */
-#define KPSE_DEBUG_STAT 0 /* stat calls */
-#define KPSE_DEBUG_HASH 1 /* hash lookups */
-#define KPSE_DEBUG_FOPEN 2 /* fopen/fclose calls */
-#define KPSE_DEBUG_PATHS 3 /* search path initializations */
-#define KPSE_DEBUG_EXPAND 4 /* path element expansion */
-#define KPSE_DEBUG_SEARCH 5 /* searches */
-#define KPSE_DEBUG_VARS 6 /* variable values */
+#define KPSE_DEBUG_STAT 0 /* stat calls */
+#define KPSE_DEBUG_HASH 1 /* hash lookups */
+#define KPSE_DEBUG_FOPEN 2 /* fopen/fclose calls */
+#define KPSE_DEBUG_PATHS 3 /* search path initializations */
+#define KPSE_DEBUG_EXPAND 4 /* path element expansion */
+#define KPSE_DEBUG_SEARCH 5 /* searches */
+#define KPSE_DEBUG_VARS 6 /* variable values */
#define KPSE_LAST_DEBUG KPSE_DEBUG_VARS
/* A printf for the debugging. */
#define DEBUGF_START() do { fputs ("kdebug:", stderr)
#define DEBUGF_END() fflush (stderr); } while (0)
-#define DEBUGF(str) \
+#define DEBUGF(str) \
DEBUGF_START (); fputs (str, stderr); DEBUGF_END ()
-#define DEBUGF1(str, e1) \
+#define DEBUGF1(str, e1) \
DEBUGF_START (); fprintf (stderr, str, e1); DEBUGF_END ()
-#define DEBUGF2(str, e1, e2) \
+#define DEBUGF2(str, e1, e2) \
DEBUGF_START (); fprintf (stderr, str, e1, e2); DEBUGF_END ()
-#define DEBUGF3(str, e1, e2, e3) \
+#define DEBUGF3(str, e1, e2, e3) \
DEBUGF_START (); fprintf (stderr, str, e1, e2, e3); DEBUGF_END ()
-#define DEBUGF4(str, e1, e2, e3, e4) \
+#define DEBUGF4(str, e1, e2, e3, e4) \
DEBUGF_START (); fprintf (stderr, str, e1, e2, e3, e4); DEBUGF_END ()
#undef fopen