summaryrefslogtreecommitdiff
path: root/src/frame.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/frame.c')
-rw-r--r--src/frame.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/frame.c b/src/frame.c
index ed6c527d4d8..e5d80fa8257 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -1461,9 +1461,6 @@ next_frame (Lisp_Object frame, Lisp_Object minibuf)
Lisp_Object f, tail;
int passed = 0;
- /* There must always be at least one frame in Vframe_list. */
- eassert (CONSP (Vframe_list));
-
while (passed < 2)
FOR_EACH_FRAME (tail, f)
{
@@ -1486,9 +1483,6 @@ prev_frame (Lisp_Object frame, Lisp_Object minibuf)
{
Lisp_Object f, tail, prev = Qnil;
- /* There must always be at least one frame in Vframe_list. */
- eassert (CONSP (Vframe_list));
-
FOR_EACH_FRAME (tail, f)
{
if (EQ (frame, f) && !NILP (prev))