From: Stefan Monnier Date: Tue, 2 Oct 2007 21:03:04 +0000 (+0000) Subject: (Fcurrent_window_configuration): Use XSETPVECTYPE. X-Git-Tag: emacs-pretest-23.0.90~10547 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=85e616ab18878e7df53553457cbf5888a52c3f00;p=emacs.git (Fcurrent_window_configuration): Use XSETPVECTYPE. --- diff --git a/src/window.c b/src/window.c index ca4c41f5e79..ab9a15dde2a 100644 --- a/src/window.c +++ b/src/window.c @@ -6663,6 +6663,7 @@ redirection (see `redirect-frame-focus'). */) n_windows = count_windows (XWINDOW (FRAME_ROOT_WINDOW (f))); vec = allocate_other_vector (VECSIZE (struct save_window_data)); + XSETPVECTYPE (vec, PVEC_WINDOW_CONFIGURATION); data = (struct save_window_data *)vec; XSETFASTINT (data->frame_cols, FRAME_COLS (f));