Merge branch 'master' of github.com:gjanssens/swig into gjanssens-master

* 'master' of github.com:gjanssens/swig:
  guile std_string test: run test in utf8 locale
  fix typo
This commit is contained in:
William S Fulton 2014-02-18 23:29:07 +00:00
commit 83bc80e1b1
2 changed files with 2 additions and 2 deletions

View file

@ -55,7 +55,7 @@ there is no convenient way to call C++ code. SWIG fills this gap.
<p>
There are (at least) two different Go compilers. One is the gc
compiler, normally invoked under via the go tool. The other
compiler, normally invoked via the go tool. The other
is the gccgo compiler, which is a frontend to the gcc compiler suite.
The interface to C/C++ code is completely different for the two Go
compilers. SWIG supports both, selected by a command line option.

View file

@ -5,5 +5,5 @@
; Note: when working with non-ascii strings in guile 2
; locale must be set explicitly
; The setlocale call below takes care of that
(setlocale LC_ALL "")
(setlocale LC_ALL "en_US.utf8")
(load "../schemerunme/li_std_string.scm")