Mercurial > hg > xemacs-beta
annotate src/intl-x.c @ 5562:855b667dea13
Drop cl-macro-environment in favour of byte-compile-macro-environment.
lisp/ChangeLog addition:
2011-09-04 Aidan Kehoe <kehoea@parhasard.net>
* bytecomp-runtime.el:
* bytecomp-runtime.el (byte-compile-macro-environment): Moved from
bytecomp.el.
* bytecomp.el:
* bytecomp.el (byte-compile-initial-macro-environment):
Add implementations for #'load-time-value, #'labels here, now
cl-macs respects byte-compile-macro-environment.
* bytecomp.el (byte-compile-function-environment):
* bytecomp.el (byte-compile-macro-environment): Removed.
* bytecomp.el (symbol-value):
* bytecomp.el (byte-compile-symbol-value): Removed.
* cl-extra.el (cl-macroexpand-all):
* cl-macs.el:
* cl-macs.el (bind-block):
* cl-macs.el (cl-macro-environment): Removed.
* cl-macs.el (cl-transform-lambda):
* cl-macs.el (load-time-value):
* cl-macs.el (block):
* cl-macs.el (flet):
* cl-macs.el (labels):
* cl-macs.el (macrolet):
* cl-macs.el (symbol-macrolet):
* cl-macs.el (lexical-let):
* cl-macs.el (apply):
* cl-macs.el (nthcdr):
* cl-macs.el (getf):
* cl-macs.el (substring):
* cl-macs.el (values):
* cl-macs.el (get-setf-method):
* cl-macs.el (cl-setf-do-modify):
* cl.el:
* cl.el (cl-macro-environment): Removed.
* cl.el (cl-macroexpand):
* obsolete.el (cl-macro-environment): Moved here.
Drop cl-macro-environment, in favour of
byte-compile-macro-environment; make the latter available in
bytecomp-runtime.el. This makes byte-compile-macro-environment far
less useless, since previously code that used cl-macs would ignore
it when calling #'cl-macroexpand-all.
Add byte-compiler-specific implementations for #'load-time-value,
#'labels. The latter is very nice indeed; it avoids the run-time
consing of the current implementation, is fully lexical and avoids
the run-time shadowing of symbol function slots that flet uses. It
would now be reasonable to move most core uses of flet to use
labels instead. Non-core code can't rely on print-circle for
mutually recursive functions, though, so it's less of an evident
win.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Sun, 04 Sep 2011 20:37:55 +0100 |
parents | 2aa9cd456ae7 |
children |
rev | line source |
---|---|
771 | 1 /* X-specific functions for internationalizing XEmacs. |
2 Copyright (C) 1996 Sun Microsystems. | |
3 Copyright (C) 2000, 2001 Ben Wing. | |
4 | |
5405
2aa9cd456ae7
Move src/ to GPLv3.
Mike Sperber <sperber@deinprogramm.de>
parents:
2333
diff
changeset
|
5 This file is part of XEmacs. |
771 | 6 |
5405
2aa9cd456ae7
Move src/ to GPLv3.
Mike Sperber <sperber@deinprogramm.de>
parents:
2333
diff
changeset
|
7 XEmacs is free software: you can redistribute it and/or modify it |
771 | 8 under the terms of the GNU General Public License as published by the |
5405
2aa9cd456ae7
Move src/ to GPLv3.
Mike Sperber <sperber@deinprogramm.de>
parents:
2333
diff
changeset
|
9 Free Software Foundation, either version 3 of the License, or (at your |
2aa9cd456ae7
Move src/ to GPLv3.
Mike Sperber <sperber@deinprogramm.de>
parents:
2333
diff
changeset
|
10 option) any later version. |
771 | 11 |
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT | |
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
15 for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
5405
2aa9cd456ae7
Move src/ to GPLv3.
Mike Sperber <sperber@deinprogramm.de>
parents:
2333
diff
changeset
|
18 along with XEmacs. If not, see <http://www.gnu.org/licenses/>. */ |
771 | 19 |
20 #include <config.h> | |
21 #include "lisp.h" | |
22 | |
23 #include "console-x.h" | |
24 #include <X11/Xlocale.h> /* More portable than <locale.h> ? */ | |
25 | |
26 Lisp_Object Qxintl; | |
27 | |
28 int init_x_locale (Lisp_Object locale); | |
29 | |
30 int | |
2333 | 31 init_x_locale (Lisp_Object USED_IF_MULE (locale)) |
771 | 32 { |
33 #ifdef MULE | |
34 /* dverna - Nov. 98: #### DON'T DO THIS !!! The default XtLanguageProc | |
35 routine calls setlocale(LC_ALL, lang) which fucks up our lower-level | |
36 locale management, and especially the value of LC_NUMERIC. Anyway, since | |
37 at this point, we don't know yet whether we're gonna need an X11 frame, | |
38 we should really do it manually and not use Xlib's dumb default routine */ | |
39 /*XtSetLanguageProc (NULL, (XtLanguageProc) NULL, NULL);*/ | |
40 | |
41 if (!XSupportsLocale ()) | |
42 { | |
43 warn_when_safe (Qxintl, Qwarning, | |
44 "System supports locale `%s' but X Windows does not", | |
45 XSTRING_DATA (locale)); | |
46 return 0; | |
47 } | |
48 | |
49 if (XSetLocaleModifiers ("") == NULL) | |
50 { | |
51 warn_when_safe (Qxintl, Qwarning, | |
52 "XSetLocaleModifiers(\"\") failed. Check the value\n" | |
53 "of the XMODIFIERS environment variable."); | |
54 return 0; | |
55 } | |
56 #endif /* MULE */ | |
57 | |
58 return 1; | |
59 } | |
60 | |
61 void | |
62 syms_of_intl_x (void) | |
63 { | |
64 DEFSYMBOL (Qxintl); | |
65 } |