Mercurial > emacs
comparison src/xmenu.c @ 14548:b94ba0bf8b7c
(xmalloc_widget_value): Fix previous change.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 11 Feb 1996 23:44:54 +0000 |
parents | bc0388a7c282 |
children | 00521a7aaa75 |
comparison
equal
deleted
inserted
replaced
14547:eac92e94d52f | 14548:b94ba0bf8b7c |
---|---|
116 static void list_of_panes (); | 116 static void list_of_panes (); |
117 static void list_of_items (); | 117 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 (); |
128 UNBLOCK_INPUT; | 128 UNBLOCK_INPUT; |
129 | 129 |