Re: problem with uffi and gettext
Edi Weitz <[email protected]> 26 Aug 2003 19:27:33 +0200
| Newsgroups | gmane.lisp.uffi.general |
|---|---|
| Message-ID | <[email protected]> |
On Tue, 26 Aug 2003 19:03:52 +0200, Lam <[email protected]> wrote: > i see that gettext defined language by searching for in the > environment variables LANGUAGE, LC_ALL, LC_MESSAGES, and LANG > > so my problem must come from theses variables ? > > have you got any idea ? Your output looks like you're using CMUCL. From CMUCL you can see the Unix environments variables - they're in the special variable *ENVIRONMENT-LIST*. If LC_ALL and friends arent't set there then probably - they weren't set in your shell when you started CMUCL, or - they weren't set in your shell when you started Emacs (in case you're using ILISP). Note that you can set additional environment variables in your .emacs file with SETENV. These will be inherited by your Lisp if it's started from ILISP. Edi.