[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: How to get a window Lisp_Object from struct window *w?
From: |
Eli Zaretskii |
Subject: |
Re: How to get a window Lisp_Object from struct window *w? |
Date: |
Tue, 18 Sep 2018 11:24:14 +0300 |
> Date: Mon, 17 Sep 2018 17:57:45 -0700
> From: Keith David Bershatsky <address@hidden>
>
> I was wondering if there is a more efficient way to derive window from a
> struct window *w?
Like this:
struct window *w;
Lisp_Object window;
XSETWINDOW (window, w);