aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1996-02-11 23:44:54 +0000
committerRichard M. Stallman1996-02-11 23:44:54 +0000
commit36457345c7ce4d93876ac2cc922cff9af88cc53c (patch)
tree82f93db6126f9d58f7b6d701570ccf15dfccedbc /src
parent210fbc32ee9708983cf3dde81d370909846b259a (diff)
downloademacs-36457345c7ce4d93876ac2cc922cff9af88cc53c.tar.gz
emacs-36457345c7ce4d93876ac2cc922cff9af88cc53c.zip
(xmalloc_widget_value): Fix previous change.
Diffstat (limited to 'src')
-rw-r--r--src/xmenu.c4
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
121widget_value 121widget_value *
122xmalloc_widget_value () 122xmalloc_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 ();