Mercurial > hg > xemacs-beta
comparison src/intl-x.c @ 2286:04bc9d2f42c7
[xemacs-hg @ 2004-09-20 19:18:55 by james]
Mark all unused parameters as unused. Also eliminate some unneeded local
variables.
author | james |
---|---|
date | Mon, 20 Sep 2004 19:20:08 +0000 |
parents | 943eaba38521 |
children | ba4677f54a05 |
comparison
equal
deleted
inserted
replaced
2285:914c5afaac33 | 2286:04bc9d2f42c7 |
---|---|
28 Lisp_Object Qxintl; | 28 Lisp_Object Qxintl; |
29 | 29 |
30 int init_x_locale (Lisp_Object locale); | 30 int init_x_locale (Lisp_Object locale); |
31 | 31 |
32 int | 32 int |
33 init_x_locale (Lisp_Object locale) | 33 init_x_locale (Lisp_Object |
34 #ifdef MULE | |
35 locale | |
36 #else | |
37 UNUSED (locale) | |
38 #endif | |
39 ) | |
34 { | 40 { |
35 #ifdef MULE | 41 #ifdef MULE |
36 /* dverna - Nov. 98: #### DON'T DO THIS !!! The default XtLanguageProc | 42 /* dverna - Nov. 98: #### DON'T DO THIS !!! The default XtLanguageProc |
37 routine calls setlocale(LC_ALL, lang) which fucks up our lower-level | 43 routine calls setlocale(LC_ALL, lang) which fucks up our lower-level |
38 locale management, and especially the value of LC_NUMERIC. Anyway, since | 44 locale management, and especially the value of LC_NUMERIC. Anyway, since |