aboutsummaryrefslogtreecommitdiffstats
path: root/src/grt/grt-strings.ads
diff options
context:
space:
mode:
Diffstat (limited to 'src/grt/grt-strings.ads')
-rw-r--r--src/grt/grt-strings.ads4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/grt/grt-strings.ads b/src/grt/grt-strings.ads
index 7b8535425..1d52a62fc 100644
--- a/src/grt/grt-strings.ads
+++ b/src/grt/grt-strings.ads
@@ -26,7 +26,9 @@ package Grt.Strings is
NBSP : constant Character := Character'Val (160);
- -- Return True IFF C is a whitespace character (as defined in LRM93 14.3)
+ -- Return True IFF C is a whitespace character as defined by LRM93 13.1
+ -- Note: this is different from the definition in LRM93 14.3 (for files,
+ -- which includes HT).
function Is_Whitespace (C : in Character) return Boolean;
-- The following functions return -1 in case there is no match in string ---