diff options
| author | YAMAMOTO Mitsuharu | 2005-04-24 06:03:58 +0000 |
|---|---|---|
| committer | YAMAMOTO Mitsuharu | 2005-04-24 06:03:58 +0000 |
| commit | f706a7b26099f02c4784118aadebdbb135fc5008 (patch) | |
| tree | 51c26e88c4d72bab13d821bbd242b9773ff85e01 /src | |
| parent | ab271acac54531df913a011d14b9e03d11203aeb (diff) | |
| download | emacs-f706a7b26099f02c4784118aadebdbb135fc5008.tar.gz emacs-f706a7b26099f02c4784118aadebdbb135fc5008.zip | |
(Fdelete_frame) [MAC_OS]: Call x_clear_frame_selections.
Diffstat (limited to 'src')
| -rw-r--r-- | src/frame.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/frame.c b/src/frame.c index d86d29db289..d757e935752 100644 --- a/src/frame.c +++ b/src/frame.c | |||
| @@ -1260,6 +1260,10 @@ The functions are run with one arg, the frame to be deleted. */) | |||
| 1260 | if (FRAME_X_P (f)) | 1260 | if (FRAME_X_P (f)) |
| 1261 | x_clear_frame_selections (f); | 1261 | x_clear_frame_selections (f); |
| 1262 | #endif | 1262 | #endif |
| 1263 | #ifdef MAC_OS | ||
| 1264 | if (FRAME_MAC_P (f)) | ||
| 1265 | x_clear_frame_selections (f); | ||
| 1266 | #endif | ||
| 1263 | 1267 | ||
| 1264 | /* Free glyphs. | 1268 | /* Free glyphs. |
| 1265 | This function must be called before the window tree of the | 1269 | This function must be called before the window tree of the |