From: Richard M. Stallman Date: Fri, 30 Dec 1994 01:41:27 +0000 (+0000) Subject: (XSETFRAME): Use pseudovector. X-Git-Tag: emacs-19.34~5568 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=aac03ccab47d02cff560ab69d19596d3d67a0a2b;p=emacs.git (XSETFRAME): Use pseudovector. --- diff --git a/src/frame.h b/src/frame.h index 0196b7a6f4b..d5230462660 100644 --- a/src/frame.h +++ b/src/frame.h @@ -267,7 +267,7 @@ struct frame typedef struct frame *FRAME_PTR; #define XFRAME(p) ((struct frame *) XPNTR (p)) -#define XSETFRAME(p, v) XSET (p, Lisp_Frame, v) +#define XSETFRAME(a, b) (XSETPSEUDOVECTOR (a, b, PVEC_FRAME)) #define WINDOW_FRAME(w) (w)->frame