Commit aca8c6e8 by Alexandre Petit-Bianco Committed by Alexandre Petit-Bianco

natSystem.cc (file_encoding): Added return statement.

2000-09-26  Alexandre Petit-Bianco  <apbianco@cygnus.com>

	* java/lang/natSystem.cc (file_encoding): Added return statement.

From-SVN: r36647
parent 5a8e2650
2000-09-26 Alexandre Petit-Bianco <apbianco@cygnus.com>
* java/lang/natSystem.cc (file_encoding): Added return statement.
2000-09-14 Alexandre Oliva <aoliva@redhat.com> 2000-09-14 Alexandre Oliva <aoliva@redhat.com>
* Makefile.am: Re-work shell commands that exceeded command-line * Makefile.am: Re-work shell commands that exceeded command-line
......
...@@ -165,6 +165,7 @@ file_encoding () ...@@ -165,6 +165,7 @@ file_encoding ()
char *e = nl_langinfo (CODESET); char *e = nl_langinfo (CODESET);
if (e == NULL || *e == '\0') if (e == NULL || *e == '\0')
e = "8859_1"; e = "8859_1";
return e;
} }
#define DEFAULT_FILE_ENCODING file_encoding () #define DEFAULT_FILE_ENCODING file_encoding ()
......
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