aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGrégoire Jadi2013-07-16 19:39:18 +0200
committerGrégoire Jadi2013-07-16 19:39:18 +0200
commita9ec66210d28b7121f8a7846f4653305269c2253 (patch)
treefa09ebbca4123fdddffdc3d41c8d8e12ca32c6ea /src
parent0bb9bb0841d89fff09820a57369df4cb01b16b43 (diff)
downloademacs-a9ec66210d28b7121f8a7846f4653305269c2253.tar.gz
emacs-a9ec66210d28b7121f8a7846f4653305269c2253.zip
* src/print.c (print_object): Add pretty printing for xwidget_view.
Diffstat (limited to 'src')
-rw-r--r--src/print.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/print.c b/src/print.c
index 1257b46dda4..798a132fc61 100644
--- a/src/print.c
+++ b/src/print.c
@@ -1771,6 +1771,11 @@ print_object (Lisp_Object obj, Lisp_Object printcharfun, bool escapeflag)
1771 strout ("#<xwidget ", -1, -1, printcharfun); 1771 strout ("#<xwidget ", -1, -1, printcharfun);
1772 PRINTCHAR ('>'); 1772 PRINTCHAR ('>');
1773 } 1773 }
1774 else if (XXWIDGET_VIEW_P (obj))
1775 {
1776 strout ("#<xwidget-view ", -1, -1, printcharfun);
1777 PRINTCHAR ('>');
1778 }
1774#endif 1779#endif
1775 else if (WINDOWP (obj)) 1780 else if (WINDOWP (obj))
1776 { 1781 {