diff options
| author | Richard M. Stallman | 2005-12-10 00:38:29 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2005-12-10 00:38:29 +0000 |
| commit | e358e052160031115249c6ec86e657932a8e053f (patch) | |
| tree | edec59f029b81594ade9babdc4b29ff3ec323699 /src | |
| parent | ed73e486e417e337f48438c314aae699c290353e (diff) | |
| download | emacs-e358e052160031115249c6ec86e657932a8e053f.tar.gz emacs-e358e052160031115249c6ec86e657932a8e053f.zip | |
(Fx_create_frame): Reinstate previous change.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/xfns.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 6e3fc3a4a5c..8513de08053 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2005-12-09 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * xfns.c (Fx_create_frame): Reinstate previous change. | ||
| 4 | |||
| 1 | 2005-12-09 Eli Zaretskii <eliz@gnu.org> | 5 | 2005-12-09 Eli Zaretskii <eliz@gnu.org> |
| 2 | 6 | ||
| 3 | * w32fns.c (w32_abort) [__GNUC__]: Add instructions for attaching | 7 | * w32fns.c (w32_abort) [__GNUC__]: Add instructions for attaching |
diff --git a/src/xfns.c b/src/xfns.c index 06779ca3b07..ee4a7bf3b00 100644 --- a/src/xfns.c +++ b/src/xfns.c | |||
| @@ -3373,16 +3373,12 @@ This function is an internal primitive--use `make-frame' instead. */) | |||
| 3373 | UNBLOCK_INPUT; | 3373 | UNBLOCK_INPUT; |
| 3374 | } | 3374 | } |
| 3375 | 3375 | ||
| 3376 | #if 0 /* This is incorrect because `default-minibuffer-frame' | ||
| 3377 | should only be set automatically to a minibuffer-only frame. */ | ||
| 3378 | |||
| 3379 | /* Initialize `default-minibuffer-frame' in case this is the first | 3376 | /* Initialize `default-minibuffer-frame' in case this is the first |
| 3380 | frame on this display device. */ | 3377 | frame on this display device. */ |
| 3381 | if (FRAME_HAS_MINIBUF_P (f) | 3378 | if (FRAME_HAS_MINIBUF_P (f) |
| 3382 | && (!FRAMEP (kb->Vdefault_minibuffer_frame) | 3379 | && (!FRAMEP (kb->Vdefault_minibuffer_frame) |
| 3383 | || !FRAME_LIVE_P (XFRAME (kb->Vdefault_minibuffer_frame)))) | 3380 | || !FRAME_LIVE_P (XFRAME (kb->Vdefault_minibuffer_frame)))) |
| 3384 | kb->Vdefault_minibuffer_frame = frame; | 3381 | kb->Vdefault_minibuffer_frame = frame; |
| 3385 | #endif | ||
| 3386 | 3382 | ||
| 3387 | UNGCPRO; | 3383 | UNGCPRO; |
| 3388 | 3384 | ||