Mercurial > emacs
annotate oldXMenu/ChgSel.c @ 83425:c82829d08b89
Fix semantics of let-binding `process-environment'.
* lisp/env.el: Require cl for byte compilation. (For `block' and `return'.)
(read-envvar-name): Update for rename. Include `process-environment'
as well.
(setenv): Update for rename also handle `process-environment'. Update doc.
(getenv): Update doc.
(environment): New function.
(let-environment): New macro.
* lisp/font-lock.el (lisp-font-lock-keywords-2): Add `let-environment'.
* src/callproc.c (Vglobal_environment): New variable, taking over the
previous role of `Vprocess_environment', which is now something else.
(add_env): New function.
(child_setup): Use it.
(child_setup, getenv_internal): Rename Vprocess_environment to
Vglobal_environment. Handle the new Vprocess_environment.
(Fgetenv_internal, egetenv): Update doc.
(set_process_environment): Rename to `set_global_environment'. Rename
Vprocess_environment to Vglobal_environment.
(syms_of_callproc): Rename process-environment to global-environment,
add new process-environment, update docs.
* src/emacs.c (main): Call set_global_environment instead of
set_process_environment.
* fileio.c (Fread_file_name): Update comment.
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-465
author | Karoly Lorentey <lorentey@elte.hu> |
---|---|
date | Thu, 29 Dec 2005 01:28:33 +0000 |
parents | 532e0a9335a9 |
children | d04d8ccb3c41 |
rev | line source |
---|---|
25858 | 1 #include "copyright.h" |
2 | |
3 /* Copyright Massachusetts Institute of Technology 1985 */ | |
65000
3861ff8f4bf1
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
54770
diff
changeset
|
4 /* Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. */ |
25858 | 5 |
6 /* | |
7 * XMenu: MIT Project Athena, X Window system menu package | |
8 * | |
9 * XMenuChangeSelection - Change a menu selection. | |
10 * | |
11 * Author: Tony Della Fera, DEC | |
12 * December 19, 1985 | |
13 * | |
14 */ | |
15 | |
16 #include "XMenuInt.h" | |
17 | |
18 int | |
19 XMenuChangeSelection(display, menu, p_num, s_num, data, data_sw, label, label_sw) | |
20 Display *display; /* previously opened display. */ | |
21 register XMenu *menu; /* Menu object to be modified. */ | |
22 register int p_num; /* Pane number to be modified. */ | |
23 register int s_num; /* Selection number to modified. */ | |
24 char *data; /* Data value. */ | |
25 int data_sw; /* Change to new data value? */ | |
26 char *label; /* Selection label. */ | |
27 int label_sw; /* Change to new label? */ | |
28 { | |
29 register XMPane *p_ptr; /* XMPane pointer. */ | |
30 register XMSelect *s_ptr; /* XMSelect pointer. */ | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
25858
diff
changeset
|
31 |
25858 | 32 int label_length; /* Label length in characters. */ |
33 int label_width; /* Label width in pixels. */ | |
34 | |
35 /* | |
36 * Check for NULL pointers! | |
37 */ | |
38 if (label == NULL) { | |
39 _XMErrorCode = XME_ARG_BOUNDS; | |
40 return(XM_FAILURE); | |
41 } | |
42 | |
43 /* | |
44 * Find the right pane. | |
45 */ | |
46 p_ptr = _XMGetPanePtr(menu, p_num); | |
47 if (p_ptr == NULL) return(XM_FAILURE); | |
48 | |
49 /* | |
50 * Find the right selection. | |
51 */ | |
52 s_ptr = _XMGetSelectionPtr(p_ptr, s_num); | |
53 if (s_ptr == NULL) return(XM_FAILURE); | |
54 | |
55 /* | |
56 * Reset the label? | |
57 */ | |
58 if (label_sw) { | |
59 /* | |
60 * Determine label size. | |
61 */ | |
62 label_length = strlen(label); | |
63 label_width = XTextWidth(menu->s_fnt_info, label, label_length); | |
64 | |
65 /* | |
66 * Change the selection data. | |
67 */ | |
68 s_ptr->label = label; | |
69 s_ptr->label_width = label_width; | |
70 s_ptr->label_length = label_length; | |
71 | |
72 /* | |
73 * Schedule a recompute. | |
74 */ | |
75 menu->recompute = 1; | |
76 } | |
77 | |
78 /* | |
79 * Reset the data? | |
80 */ | |
81 if (data_sw) s_ptr->data = data; | |
82 | |
83 /* | |
84 * Return successfully. | |
85 */ | |
86 _XMErrorCode = XME_NO_ERROR; | |
87 return(s_num); | |
88 } | |
52401 | 89 |
90 /* arch-tag: 229732a6-46bf-4a3a-ad90-3d8ed65c0841 | |
91 (do not change this comment) */ |