[1020] in BarnOwl Developers
[D-O-H] r1005 - branches/barnowl_sqlite/owl
daemon@ATHENA.MIT.EDU (nelhage@MIT.EDU)
Thu Oct 29 18:12:12 2009
Resent-From: nelhage@mit.edu
Resent-To: barnowl-dev-mtg@charon.mit.edu
X-Original-To: nelhage@nelhage.com
To: dirty-owl-hackers@MIT.EDU
From: nelhage@MIT.EDU
Reply-to: dirty-owl-hackers@MIT.EDU
Date: Wed, 2 Apr 2008 00:42:21 -0400 (EDT)
Author: nelhage
Date: 2008-04-02 00:42:21 -0400 (Wed, 02 Apr 2008)
New Revision: 1005
Modified:
branches/barnowl_sqlite/owl/functions.c
Log:
Mark some things as unsupported in preparation for changing iterator
semantics.
Modified: branches/barnowl_sqlite/owl/functions.c
===================================================================
--- branches/barnowl_sqlite/owl/functions.c 2008-04-02 01:47:20 UTC (rev 1004)
+++ branches/barnowl_sqlite/owl/functions.c 2008-04-02 04:42:21 UTC (rev 1005)
@@ -1217,7 +1217,7 @@
/* If we're off the top of the screen then center */
if (owl_view_iterator_cmp(curmsg, topmsg) < 0) {
- owl_view_iterator_init_start(topmsg, v);
+ owl_view_iterator_clone(topmsg, curmsg);
owl_function_calculate_topmsg_center(direction, v, curmsg, topmsg, recwinlines);
}
@@ -1873,6 +1873,10 @@
owl_view_iterator *it;
owl_view *v;
owl_filter *f;
+
+ owl_function_error("Trash command temporarily broken");
+ return;
+
it = owl_view_iterator_free_later(owl_view_iterator_new());
/* get the trash filter */
@@ -2759,6 +2763,9 @@
owl_message *m;
int count = 0;
+ owl_function_error("Unsupported");
+ return;
+
it = owl_view_iterator_free_later(owl_view_iterator_new());
v=owl_global_get_current_view(&g);
@@ -3366,6 +3373,9 @@
owl_view_iterator *it;
FILE *file;
+ owl_function_error("Unsupported");
+ return;
+
it = owl_view_iterator_free_later(owl_view_iterator_new());
v = owl_global_get_current_view(&g);