>
> This is nonsense, may I suggest you read locale (1p)? If you set
> LC_ALL, this overrides the other two settings no matter what they are
> set to (and you may prevent some scripts trying to set LC_COLLATE or
> something like that from functioning correctly). Unless you really need
> such a bi
Achim Gratz wrote:
> Marcelo de Moraes Serpa writes:
> > So, I did this:
> >
> > (defun test ()
> > (setenv "LANG" "en_US.UTF-8")
> > (setenv "LC_ALL" "en_US.UTF-8")
> > (setenv "LC_CTYPE" "en_US.UTF-8")
> > (shell-command "/Users/myself/.rvm/bin/rvm ruby-1.9.3-p194 do
> > /usr/bin/rubyscript
Marcelo de Moraes Serpa writes:
> So, I did this:
>
> (defun test ()
> (setenv "LANG" "en_US.UTF-8")
> (setenv "LC_ALL" "en_US.UTF-8")
> (setenv "LC_CTYPE" "en_US.UTF-8")
> (shell-command "/Users/myself/.rvm/bin/rvm ruby-1.9.3-p194 do
> /usr/bin/rubyscript")
> )
This is nons
Alright, I solved it.
The problem is that emacs' shell-command doesn't use the same environment,
so it wasn't picking up the value of those three vars:
✗ export | grep UTF
LANG=en_US.UTF-8
LC_ALL=en_US.UTF-8
LC_CTYPE=en_US.UTF-8
So, I did this:
(defun test ()
(setenv "LANG" "en_US
Marcelo de Moraes Serpa wrote:
> Hey list,
>
> I've tried posting on help-gnu-emacs mailing list first, but not luck so far,
> so I thought I'd try here, as I know there are many savvy emacs users around.
>
> I have a small Ruby CLI program that I want to call from emacs. This script
> simply
Hey list,
I've tried posting on help-gnu-emacs mailing list first, but not luck so
far, so I thought I'd try here, as I know there are many savvy emacs users
around.
I have a small Ruby CLI program that I want to call from emacs. This script
simply opens an emacs orgmode file from a specific loca