aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2000-12-15 12:06:34 +0000
committerGerd Moellmann2000-12-15 12:06:34 +0000
commit8a1a77433361ff03d7c8b51151fc5cbc1ce7a452 (patch)
treeb46407ed7897fe2305b00063071524fddcf1389f /src
parent3ffa545ba6368080ae668be84c59afe8aa7f3fa7 (diff)
downloademacs-8a1a77433361ff03d7c8b51151fc5cbc1ce7a452.tar.gz
emacs-8a1a77433361ff03d7c8b51151fc5cbc1ce7a452.zip
(x_create_tip_frame): Use unwind_create_tip_frame,
not unwind_create_frame.
Diffstat (limited to 'src')
-rw-r--r--src/xfns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xfns.c b/src/xfns.c
index 04ef282a175..0def9ac3af5 100644
--- a/src/xfns.c
+++ b/src/xfns.c
@@ -10410,7 +10410,7 @@ x_create_tip_frame (dpyinfo, parms)
10410 f = make_frame (1); 10410 f = make_frame (1);
10411 XSETFRAME (frame, f); 10411 XSETFRAME (frame, f);
10412 FRAME_CAN_HAVE_SCROLL_BARS (f) = 0; 10412 FRAME_CAN_HAVE_SCROLL_BARS (f) = 0;
10413 record_unwind_protect (unwind_create_frame, frame); 10413 record_unwind_protect (unwind_create_tip_frame, frame);
10414 10414
10415 /* By setting the output method, we're essentially saying that 10415 /* By setting the output method, we're essentially saying that
10416 the frame is live, as per FRAME_LIVE_P. If we get a signal 10416 the frame is live, as per FRAME_LIVE_P. If we get a signal