diff options
| author | Richard M. Stallman | 1995-04-18 18:36:03 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-04-18 18:36:03 +0000 |
| commit | 34ae77b577d0ba9fa2cccf61a22e749951735cb5 (patch) | |
| tree | a197e94d7788a4628c07b5d775b87ef401cd40cf | |
| parent | a2416e212f9105c8e39834ad46fe9bbfe9683f39 (diff) | |
| download | emacs-34ae77b577d0ba9fa2cccf61a22e749951735cb5.tar.gz emacs-34ae77b577d0ba9fa2cccf61a22e749951735cb5.zip | |
(x_report_frame_params): Report value of `display' parm.
| -rw-r--r-- | src/xfns.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/xfns.c b/src/xfns.c index 70f8644130d..19fc63ed7d4 100644 --- a/src/xfns.c +++ b/src/xfns.c | |||
| @@ -964,6 +964,8 @@ x_report_frame_params (f, alistptr) | |||
| 964 | store_in_alist (alistptr, Qvisibility, | 964 | store_in_alist (alistptr, Qvisibility, |
| 965 | (FRAME_VISIBLE_P (f) ? Qt | 965 | (FRAME_VISIBLE_P (f) ? Qt |
| 966 | : FRAME_ICONIFIED_P (f) ? Qicon : Qnil)); | 966 | : FRAME_ICONIFIED_P (f) ? Qicon : Qnil)); |
| 967 | store_in_alist (alistptr, Qdisplay, | ||
| 968 | XCONS (FRAME_X_DISPLAY_INFO (f)->name_list_element)->car); | ||
| 967 | } | 969 | } |
| 968 | 970 | ||
| 969 | 971 | ||