head	1.2;
access;
symbols
	RELEASE_4_4_0:1.1;
locks; strict;
comment	@# @;


1.2
date	2001.10.26.19.12.05;	author lioux;	state dead;
branches;
next	1.1;

1.1
date	2001.06.16.18.46.36;	author sf;	state Exp;
branches;
next	;


desc
@@


1.2
log
@o update to 1.1.p (remove unnecessary patches)

PR:		29095
Submitted by:	MAINTAINER
@
text
@--- jvm_file.adb.orig	Tue Jan 19 15:26:06 1999
+++ jvm_file.adb	Thu Mar  8 10:03:10 2001
@@@@ -31,6 +31,9 @@@@
 with JVM_Walk;
 with Osint;
 
+--  add following to get rid of compile bug
+with Ada.Characters.Handling;
+
 package body JVM_File is
 
    use Utf8;
@@@@ -417,7 +420,9 @@@@
       if U in 16#01# .. 16#7F# then
          Add (T, U);
       else
-         Append (T, Wide_Character (C));
+
+         --  Change to To_Wide_Character from Ada.Characters.Handling
+         Append (T, Ada.Characters.Handling.To_Wide_Character (C));
       end if;
    end Append;

@


1.1
log
@fix build with gnat-3.13p.

PR:		26262
Submitted by:	John Merryweather Cooper <jmcoopr@@webmail.bmi.net>
@
text
@@

