diff options
| author | Richard M. Stallman | 1996-02-11 23:44:54 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-02-11 23:44:54 +0000 |
| commit | 36457345c7ce4d93876ac2cc922cff9af88cc53c (patch) | |
| tree | 82f93db6126f9d58f7b6d701570ccf15dfccedbc /src | |
| parent | 210fbc32ee9708983cf3dde81d370909846b259a (diff) | |
| download | emacs-36457345c7ce4d93876ac2cc922cff9af88cc53c.tar.gz emacs-36457345c7ce4d93876ac2cc922cff9af88cc53c.zip | |
(xmalloc_widget_value): Fix previous change.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xmenu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xmenu.c b/src/xmenu.c index df4a5e3e30e..9257cf792f3 100644 --- a/src/xmenu.c +++ b/src/xmenu.c | |||
| @@ -118,10 +118,10 @@ static void list_of_items (); | |||
| 118 | 118 | ||
| 119 | /* Allocate a widget_value, blocking input. */ | 119 | /* Allocate a widget_value, blocking input. */ |
| 120 | 120 | ||
| 121 | widget_value | 121 | widget_value * |
| 122 | xmalloc_widget_value () | 122 | xmalloc_widget_value () |
| 123 | { | 123 | { |
| 124 | widget_value value; | 124 | widget_value *value; |
| 125 | 125 | ||
| 126 | BLOCK_INPUT; | 126 | BLOCK_INPUT; |
| 127 | value = malloc_widget_value (); | 127 | value = malloc_widget_value (); |