shithub: orca

Download patch

ref: 692f803e0c06a669e3e2b3d21bc8dd07e135b4e6
parent: acac9a5ac6b984db4feeed92555e7e06137ecdb4
author: cancel <cancel@cancel.fm>
date: Sat Nov 21 15:47:53 EST 2020

Remove obsolete comment

--- a/term_util.c
+++ b/term_util.c
@@ -128,9 +128,6 @@
   qb->down = qnav_stack.top;
   qnav_stack.top = qb;
   qb->outer_window = newpad(total_h, total_w);
-  // This used to be derwin when when used newwin instead of newpad -- not sure
-  // if we should use derwin or subpad now. subpad is probably more compatible.
-  // ncurses docs state that it handles it correctly, unlike some others?
   qb->content_window = subpad(qb->outer_window, height, width, 1, 1);
   qnav_reposition_block(qb);
   qnav_stack.occlusion_dirty = true;
--