diff options
| author | Gerd Moellmann | 2001-03-06 19:33:47 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-03-06 19:33:47 +0000 |
| commit | 9e57df62a8343ec67505750d1dbd4d9c0d3247d3 (patch) | |
| tree | 6053136870616a67d794c4de01a7472b26bc4b46 /src | |
| parent | bc49c316c3f98abbcf8ee6da514af25f0c4c8cc8 (diff) | |
| download | emacs-9e57df62a8343ec67505750d1dbd4d9c0d3247d3.tar.gz emacs-9e57df62a8343ec67505750d1dbd4d9c0d3247d3.zip | |
(Fx_create_frame): Clear Vwindow_list.
Diffstat (limited to 'src')
| -rw-r--r-- | src/w32fns.c | 5 | ||||
| -rw-r--r-- | src/xfns.c | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/src/w32fns.c b/src/w32fns.c index 74aaf164bec..f3001649f81 100644 --- a/src/w32fns.c +++ b/src/w32fns.c | |||
| @@ -5462,6 +5462,11 @@ This function is an internal primitive--use `make-frame' instead.") | |||
| 5462 | ; | 5462 | ; |
| 5463 | } | 5463 | } |
| 5464 | UNGCPRO; | 5464 | UNGCPRO; |
| 5465 | |||
| 5466 | /* Make sure windows on this frame appear in calls to next-window | ||
| 5467 | and similar functions. */ | ||
| 5468 | Vwindow_list = Qnil; | ||
| 5469 | |||
| 5465 | return unbind_to (count, frame); | 5470 | return unbind_to (count, frame); |
| 5466 | } | 5471 | } |
| 5467 | 5472 | ||
diff --git a/src/xfns.c b/src/xfns.c index 8ed08ee75ff..97c57382f41 100644 --- a/src/xfns.c +++ b/src/xfns.c | |||
| @@ -4455,6 +4455,11 @@ This function is an internal primitive--use `make-frame' instead.") | |||
| 4455 | } | 4455 | } |
| 4456 | 4456 | ||
| 4457 | UNGCPRO; | 4457 | UNGCPRO; |
| 4458 | |||
| 4459 | /* Make sure windows on this frame appear in calls to next-window | ||
| 4460 | and similar functions. */ | ||
| 4461 | Vwindow_list = Qnil; | ||
| 4462 | |||
| 4458 | return unbind_to (count, frame); | 4463 | return unbind_to (count, frame); |
| 4459 | } | 4464 | } |
| 4460 | 4465 | ||