Fix (next-frame nil t) crash (Bug#24281)
* src/frame.c (candidate_frame): Check minibuf argument before
comparing it to zero (Bug#24281).
This was backported from master
(cherry picked from commit dc491c3df3
)
This commit is contained in:
parent
3f539c0013
commit
16e62077bb
1 changed files with 1 additions and 1 deletions
|
@ -1308,7 +1308,7 @@ candidate_frame (Lisp_Object candidate, Lisp_Object frame, Lisp_Object minibuf)
|
|||
FRAME_FOCUS_FRAME (c)))
|
||||
return candidate;
|
||||
}
|
||||
else if (XFASTINT (minibuf) == 0)
|
||||
else if (INTEGERP (minibuf) && XINT (minibuf) == 0)
|
||||
{
|
||||
if (FRAME_VISIBLE_P (c) || FRAME_ICONIFIED_P (c))
|
||||
return candidate;
|
||||
|
|
Loading…
Add table
Reference in a new issue