From 302ea7cd32042cd41fc5c7c5ed558bd89e45e518 Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Tue, 28 Nov 2006 11:34:34 +0000 Subject: [PATCH] *** empty log message *** --- ase/macros.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ase/macros.h b/ase/macros.h index 50c25e41..b69c39bc 100644 --- a/ase/macros.h +++ b/ase/macros.h @@ -1,5 +1,5 @@ /* - * $Id: macros.h,v 1.38 2006-11-28 11:28:38 bacon Exp $ + * $Id: macros.h,v 1.39 2006-11-28 11:34:34 bacon Exp $ */ #ifndef _ASE_MACROS_H_ @@ -72,11 +72,11 @@ */ /* new short form */ -#define ASE_WQ_I(val) (L###val) +#define ASE_WQ_I(val) (L ## #val) #define ASE_WQ(val) ASE_WQ_I(val) -#define ASE_WC(ch) ((ase_wchar_t)L##ch) -#define ASE_WS(str) ((const ase_wchar_t*)L##str) -#define ASE_WT(txt) (L##txt) +#define ASE_WC(ch) ((ase_wchar_t)L ## ch) +#define ASE_WS(str) ((const ase_wchar_t*)L ## str) +#define ASE_WT(txt) (L ## txt) #if defined(ASE_CHAR_IS_MCHAR) #define ASE_C(ch) ASE_MC(ch)