From 6168122d6821417d0cababda6f28e05f78354fe5 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Fri, 21 Sep 2007 07:21:02 +0000 Subject: [PATCH] (Qdisplay_environment_variable): Delete. --- etc/NEWS | 4 ++-- src/ChangeLog | 3 +++ src/frame.c | 4 ---- src/frame.h | 1 - 4 files changed, 5 insertions(+), 7 deletions(-) diff --git a/etc/NEWS b/etc/NEWS index dc99241334d..a154234f6fa 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -242,6 +242,8 @@ supported on other platforms, but not on Windows due to using the winsock *** $TERM is now set to `dumb' for subprocesses. If you want to know the $TERM inherited by Emacs you will have to look inside initial-environment. +*** $DISPLAY is now dynamically inherited from the frame's `display'. + *** The `window-system' variable has been made frame-local. The new `initial-window-system' variable contains the `window-system' value for the first frame. @@ -275,8 +277,6 @@ function-key-map variables that already existed. *** `initial-environment' holds the environment inherited from Emacs's parent. -*** New frame parameter `display-environment-variable'. - *** The `keyboard-translate-table' variable and the terminal and keyboard coding systems have been made terminal-local. diff --git a/src/ChangeLog b/src/ChangeLog index 46676098ddc..01332c0b9f5 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,8 @@ 2007-09-21 Stefan Monnier + * frame.c (Qdisplay_environment_variable): + * frame.h (Qdisplay_environment_variable): Delete. + * .gdbinit (xbacktrace): Print the arg's address rather than the value of the first arg, since that value may be a union. diff --git a/src/frame.c b/src/frame.c index 4a526c040d5..6596111d0ca 100644 --- a/src/frame.c +++ b/src/frame.c @@ -111,7 +111,6 @@ Lisp_Object Qtty_color_mode; Lisp_Object Qtty, Qtty_type; Lisp_Object Qwindow_system; Lisp_Object Qenvironment; -Lisp_Object Qdisplay_environment_variable; Lisp_Object Qfullscreen, Qfullwidth, Qfullheight, Qfullboth; @@ -4356,9 +4355,6 @@ syms_of_frame () Qenvironment = intern ("environment"); staticpro (&Qenvironment); - Qdisplay_environment_variable = intern ("display-environment-variable"); - staticpro (&Qdisplay_environment_variable); - Qface_set_after_frame_default = intern ("face-set-after-frame-default"); staticpro (&Qface_set_after_frame_default); diff --git a/src/frame.h b/src/frame.h index 73a3458292c..78657958014 100644 --- a/src/frame.h +++ b/src/frame.h @@ -780,7 +780,6 @@ extern Lisp_Object Qframep, Qframe_live_p; extern Lisp_Object Qtty, Qtty_type; extern Lisp_Object Qterminal, Qterminal_live_p; extern Lisp_Object Qenvironment; -extern Lisp_Object Qdisplay_environment_variable; extern struct frame *last_nonminibuf_frame; -- 2.39.2