diff trunk/src/lang_en.d @ 389:c4bfceab7246

Applied fixes and improvements to hex float scanner. '0x1234i' and '0x1234Li' were wrongly matched as hex floats. Refactored scanHexReal(). It's faster now and easier to read. Renamed MID.HexFloatMissingExpDigits to MID.HexFloatExpMustStartWithDigit. Renamed MID.FloatExponentDigitExpected to MID.FloatExpMustStartWidhtDigit. Fix in scanSpecialTokenSequence(): --p must come after if statement.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Wed, 12 Sep 2007 18:18:29 +0200
parents ad0cbd1c8881
children 4d36eea1bbc9
line wrap: on
line diff
--- a/trunk/src/lang_en.d	Wed Sep 12 13:43:45 2007 +0200
+++ b/trunk/src/lang_en.d	Wed Sep 12 18:18:29 2007 +0200
@@ -48,8 +48,8 @@
   "invalid hex number; at least one hex digit expected.",
   "invalid binary number; at least one binary digit expected.",
   "the exponent of a hexadecimal float number is required.",
-  "missing decimal digits in hexadecimal float exponent.",
-  "exponents have to start with a digit.",
+  "hexadecimal float exponents must start with a digit.",
+  "exponents must start with a digit.",
 
   // Parser messages
   "expected '{1}', but found '{2}'.",