aboutsummaryrefslogtreecommitdiffstats
path: root/src/grt/grt-strings.adb
diff options
context:
space:
mode:
Diffstat (limited to 'src/grt/grt-strings.adb')
-rw-r--r--src/grt/grt-strings.adb3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/grt/grt-strings.adb b/src/grt/grt-strings.adb
index 5d6fc8706..3f8f8ed29 100644
--- a/src/grt/grt-strings.adb
+++ b/src/grt/grt-strings.adb
@@ -23,9 +23,8 @@
package body Grt.Strings is
function Is_Whitespace (C : in Character) return Boolean is
- use ASCII;
begin
- return C = ' ' or C = NBSP or C = HT;
+ return C = ' ' or C = NBSP;
end Is_Whitespace;
function First_Non_Whitespace_Pos (Str : String) return Integer is