Commit f5e811d5 by Robert Dewar Committed by Arnaud Charlet

s-utf_32.adb (Get_Category): Fix obvious typo

2008-08-22  Robert Dewar  <dewar@adacore.com>

	* s-utf_32.adb (Get_Category): Fix obvious typo

From-SVN: r139489
parent 48afdf8c
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
-- -- -- --
-- B o d y -- -- B o d y --
-- -- -- --
-- Copyright (C) 2005-2007, Free Software Foundation, Inc. -- -- Copyright (C) 2005-2008, Free Software Foundation, Inc. --
-- -- -- --
-- GNAT is free software; you can redistribute it and/or modify it under -- -- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- -- -- terms of the GNU General Public License as published by the Free Soft- --
...@@ -5103,7 +5103,7 @@ package body System.UTF_32 is ...@@ -5103,7 +5103,7 @@ package body System.UTF_32 is
begin begin
-- Deal with FFFE/FFFF cases -- Deal with FFFE/FFFF cases
if U mod 2#1_0000# >= 16#FFFE# then if U mod 16#1_0000# >= 16#FFFE# then
return Fe; return Fe;
-- Otherwise search table -- Otherwise search table
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment