diff options
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 | ||