diff options
| author | Richard M. Stallman | 2001-12-02 04:55:06 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2001-12-02 04:55:06 +0000 |
| commit | 0591102a32078be99c05df560b8e05d8cd78fdc2 (patch) | |
| tree | 6a074749c285cda871e5a127169c915454f6cad0 | |
| parent | a3bf8a8cfac0e8486fe8441b4532e21075a1a4f5 (diff) | |
| download | emacs-0591102a32078be99c05df560b8e05d8cd78fdc2.tar.gz emacs-0591102a32078be99c05df560b8e05d8cd78fdc2.zip | |
(_widget_value): `help' has type Lisp_Object.
| -rw-r--r-- | lwlib/lwlib.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lwlib/lwlib.h b/lwlib/lwlib.h index e101801949c..bf2a9c67bdf 100644 --- a/lwlib/lwlib.h +++ b/lwlib/lwlib.h | |||
| @@ -54,7 +54,7 @@ enum menu_separator | |||
| 54 | SEPARATOR_SHADOW_ETCHED_IN_DASH, | 54 | SEPARATOR_SHADOW_ETCHED_IN_DASH, |
| 55 | SEPARATOR_SHADOW_ETCHED_OUT_DASH, | 55 | SEPARATOR_SHADOW_ETCHED_OUT_DASH, |
| 56 | 56 | ||
| 57 | /* The following are supported by XEmacs' Lucid menus. */ | 57 | /* The following are supported by Lucid menus. */ |
| 58 | SEPARATOR_SHADOW_DOUBLE_ETCHED_IN, | 58 | SEPARATOR_SHADOW_DOUBLE_ETCHED_IN, |
| 59 | SEPARATOR_SHADOW_DOUBLE_ETCHED_OUT, | 59 | SEPARATOR_SHADOW_DOUBLE_ETCHED_OUT, |
| 60 | SEPARATOR_SHADOW_DOUBLE_ETCHED_IN_DASH, | 60 | SEPARATOR_SHADOW_DOUBLE_ETCHED_IN_DASH, |
| @@ -69,8 +69,10 @@ typedef struct _widget_value | |||
| 69 | char* value; | 69 | char* value; |
| 70 | /* keyboard equivalent. no implications for XtTranslations */ | 70 | /* keyboard equivalent. no implications for XtTranslations */ |
| 71 | char* key; | 71 | char* key; |
| 72 | /* Help string or null if none. */ | 72 | /* Help string or nil if none. |
| 73 | char *help; | 73 | GC finds this string through the frame's menu_bar_vector |
| 74 | or through menu_items. */ | ||
| 75 | Lisp_Object help; | ||
| 74 | /* true if enabled */ | 76 | /* true if enabled */ |
| 75 | Boolean enabled; | 77 | Boolean enabled; |
| 76 | /* true if selected */ | 78 | /* true if selected */ |