diff options
author | Grégoire Jadi <gregoire.jadi@gmail.com> | 2013-06-24 10:14:54 +0200 |
---|---|---|
committer | Grégoire Jadi <gregoire.jadi@gmail.com> | 2013-06-24 10:14:54 +0200 |
commit | 4d3eadf4d596788c6b70c2fac347d486c5b4658a (patch) | |
tree | e5d86583ee1658c984cecbd41e47e0fb2ff45552 /src/xwidget.h | |
parent | ff248cdccef204c512fda28a43380f60f8a9166d (diff) | |
download | emacs-4d3eadf4d596788c6b70c2fac347d486c5b4658a.tar.gz |
* src/xwidget.h (XXWIDGET): XXWIDGET expects a PSEUDOVECTOR not a display
spec.
Diffstat (limited to 'src/xwidget.h')
-rw-r--r-- | src/xwidget.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xwidget.h b/src/xwidget.h index 92c6e6e3513..3ca9dbe0e1a 100644 --- a/src/xwidget.h +++ b/src/xwidget.h @@ -74,7 +74,7 @@ struct xwidget_view{ #define XWIDGETP(x) (CONSP (x) && EQ (XCAR (x), Qxwidget)) /* Test for xwidget pseudovector*/ #define XXWIDGETP(x) PSEUDOVECTORP (x, PVEC_XWIDGET) -#define XXWIDGET(a) (eassert (XWIDGETP(a)),(struct xwidget *) XPNTR(a)) +#define XXWIDGET(a) (eassert (XXWIDGETP(a)),(struct xwidget *) XPNTR(a)) struct xwidget_type |