From c3fa57dc843aadb8607a4d87c4a9248a76738ac2 Mon Sep 17 00:00:00 2001 From: Peter Alexander Date: Sun, 25 Sep 2011 17:56:40 +0100 Subject: [PATCH] Removed erroneous q{ @ } error in lex.dd --- lex.dd | 1 - 1 file changed, 1 deletion(-) diff --git a/lex.dd b/lex.dd index 689f289fa9..de6f81a3b8 100644 --- a/lex.dd +++ b/lex.dd @@ -566,7 +566,6 @@ q"/abc/def/" // error q{foo} // "foo" q{/*}*/ } // "/*}*/ " q{ foo(q{hello}); } // " foo(q{hello}); " -q{ @ } // error, @ is not a valid D token q{ __TIME__ } // " __TIME__ ", i.e. it is not replaced with the time q{ __EOF__ } // error, as __EOF__ is not a token, it's end of file ---