aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoakim Verona2011-08-25 07:06:47 +0200
committerJoakim Verona2011-08-25 07:06:47 +0200
commit2002bbd139da85246597a131d0b43c4ef921f233 (patch)
tree6c12c854d6ffbfce11ac5e2027a0e7a75a0e9e01
parent41621cb417f625d43e832736d57bd1ca303fa2e6 (diff)
downloademacs-2002bbd139da85246597a131d0b43c4ef921f233.tar.gz
emacs-2002bbd139da85246597a131d0b43c4ef921f233.zip
socket args
-rw-r--r--README.xwidget8
-rw-r--r--src/xwidget.c2
2 files changed, 9 insertions, 1 deletions
diff --git a/README.xwidget b/README.xwidget
index 2282134a49d..e8bc1ff464f 100644
--- a/README.xwidget
+++ b/README.xwidget
@@ -247,6 +247,11 @@ Emacs sockets.
247 in that case not phantomed. 247 in that case not phantomed.
248 248
249* ToDo:s 249* ToDo:s
250** TODO optimize drawing off large offscreen widgets
251Currently I just allocate as large an area as the offscreen widget
252desires. This works well most of the time. But a HTML page might in
253principle be of infinite height so there will probably be cases where
254this doesn't work too well.
250** TODO again a trace 255** TODO again a trace
251[2011-08-23 Tue] 256[2011-08-23 Tue]
252the hunch is that since I still hand-wave the view storage the array 257the hunch is that since I still hand-wave the view storage the array
@@ -1314,3 +1319,6 @@ for (var i=0; i<frames.length; i++)
1314 } 1319 }
1315 1320
1316 1321
1322** TODO support downstreams
1323http://aur.archlinux.org/packages.php?ID=48230
1324
diff --git a/src/xwidget.c b/src/xwidget.c
index eb6c5345a1f..ded7cee8179 100644
--- a/src/xwidget.c
+++ b/src/xwidget.c
@@ -289,8 +289,8 @@ send_xembed_ready_event (struct xwidget* xw, int xembedid)
289 289
290 event.arg = Qnil; 290 event.arg = Qnil;
291 event.arg = Fcons (make_number (xembedid), event.arg); 291 event.arg = Fcons (make_number (xembedid), event.arg);
292 event.arg = Fcons (intern ("xembed-ready"), event.arg);
293 event.arg = Fcons (xw, event.arg); //TODO 292 event.arg = Fcons (xw, event.arg); //TODO
293 event.arg = Fcons (intern ("xembed-ready"), event.arg);
294 294
295 295
296 kbd_buffer_store_event (&event); 296 kbd_buffer_store_event (&event);