This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Patch: missed an I/O converter alias


I'm checking this in.  I neglected to convert the one manually
maintained alias to lower case.

2001-06-27  Tom Tromey  <tromey@redhat.com>

	* gnu/gcj/convert/IOConverter.java: Manually maintained alias now
	lowercase.

Tom

Index: gnu/gcj/convert/IOConverter.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/gnu/gcj/convert/IOConverter.java,v
retrieving revision 1.3
diff -u -r1.3 IOConverter.java
--- IOConverter.java	2001/06/26 04:36:47	1.3
+++ IOConverter.java	2001/06/27 21:55:16
@@ -26,7 +26,7 @@
   {
     // Manually maintained aliases.  Note that the value must be our
     // canonical name.
-    hash.put ("ISO-Latin-1", "8859_1");
+    hash.put ("iso-latin-1", "8859_1");
     // All aliases after this point are automatically generated by the
     // `encodings.pl' script.  Run it to make any corrections.
     hash.put ("ansi_x3.4-1968", "ASCII");


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]