diff options
| author | Grégoire Jadi | 2013-06-24 10:14:54 +0200 |
|---|---|---|
| committer | Grégoire Jadi | 2013-06-24 10:14:54 +0200 |
| commit | 4d3eadf4d596788c6b70c2fac347d486c5b4658a (patch) | |
| tree | e5d86583ee1658c984cecbd41e47e0fb2ff45552 /src | |
| parent | ff248cdccef204c512fda28a43380f60f8a9166d (diff) | |
| download | emacs-4d3eadf4d596788c6b70c2fac347d486c5b4658a.tar.gz emacs-4d3eadf4d596788c6b70c2fac347d486c5b4658a.zip | |
* src/xwidget.h (XXWIDGET): XXWIDGET expects a PSEUDOVECTOR not a display
spec.
Diffstat (limited to 'src')
| -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{ | |||
| 74 | #define XWIDGETP(x) (CONSP (x) && EQ (XCAR (x), Qxwidget)) | 74 | #define XWIDGETP(x) (CONSP (x) && EQ (XCAR (x), Qxwidget)) |
| 75 | /* Test for xwidget pseudovector*/ | 75 | /* Test for xwidget pseudovector*/ |
| 76 | #define XXWIDGETP(x) PSEUDOVECTORP (x, PVEC_XWIDGET) | 76 | #define XXWIDGETP(x) PSEUDOVECTORP (x, PVEC_XWIDGET) |
| 77 | #define XXWIDGET(a) (eassert (XWIDGETP(a)),(struct xwidget *) XPNTR(a)) | 77 | #define XXWIDGET(a) (eassert (XXWIDGETP(a)),(struct xwidget *) XPNTR(a)) |
| 78 | 78 | ||
| 79 | 79 | ||
| 80 | struct xwidget_type | 80 | struct xwidget_type |