aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1995-04-24 18:21:20 +0000
committerKarl Heuer1995-04-24 18:21:20 +0000
commitdc0700f64ca372b4c593b6fb03983eb209d99088 (patch)
tree47077a792a004e1bc7150c67e027a0fd93abbde7 /src
parentc07d3a87ccb1615159380342095515d4268dbd23 (diff)
downloademacs-dc0700f64ca372b4c593b6fb03983eb209d99088.tar.gz
emacs-dc0700f64ca372b4c593b6fb03983eb209d99088.zip
(Fredirect_frame_focus): Fix earlier change; use a frame known to be non-nil.
Diffstat (limited to 'src')
-rw-r--r--src/frame.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frame.c b/src/frame.c
index f6c8c57186c..09a7c0a38f0 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -1411,7 +1411,7 @@ The redirection lasts until `redirect-frame-focus' is called to change it.")
1411#endif 1411#endif
1412 1412
1413 if (frame_rehighlight_hook) 1413 if (frame_rehighlight_hook)
1414 (*frame_rehighlight_hook) (XFRAME (focus_frame)); 1414 (*frame_rehighlight_hook) (XFRAME (frame));
1415 1415
1416 return Qnil; 1416 return Qnil;
1417} 1417}