aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGrégoire Jadi2013-07-18 11:48:14 +0200
committerGrégoire Jadi2013-07-18 11:48:14 +0200
commit808dcb446d519f5b67c9ced06024bace3d770a76 (patch)
tree0c6798c5dcd930bf57d1dca7b05370fb5b37ccd9 /src
parenta425ea65234441d4774d32dc7511a9401467b54d (diff)
downloademacs-808dcb446d519f5b67c9ced06024bace3d770a76.tar.gz
emacs-808dcb446d519f5b67c9ced06024bace3d770a76.zip
* src/xwidget.c (Fxwidget_info): Fix a regression introduced in commit
b4e1725be1b96b5335a12d34fdd81b99dededf54.
Diffstat (limited to 'src')
-rw-r--r--src/xwidget.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xwidget.c b/src/xwidget.c
index 837b607643b..28bb056954e 100644
--- a/src/xwidget.c
+++ b/src/xwidget.c
@@ -1415,7 +1415,7 @@ DEFUN ("xwidget-info", Fxwidget_info , Sxwidget_info, 1,1,0, doc: /* get xwidget
1415 XSETFASTINT(n, xw->width); 1415 XSETFASTINT(n, xw->width);
1416 ASET (info, 2, n); 1416 ASET (info, 2, n);
1417 XSETFASTINT(n, xw->height); 1417 XSETFASTINT(n, xw->height);
1418 ASET (info, 2, n); 1418 ASET (info, 3, n);
1419 1419
1420 return info; 1420 return info;
1421} 1421}