Update of /cvsroot/pure-data/pd/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12285
Modified Files: Tag: devel_0_39 desire.c Log Message: deleted yet yet another another 500 lines.
Index: desire.c =================================================================== RCS file: /cvsroot/pure-data/pd/src/Attic/desire.c,v retrieving revision 1.1.2.114 retrieving revision 1.1.2.115 diff -C2 -d -r1.1.2.114 -r1.1.2.115 *** desire.c 20 Aug 2006 20:35:42 -0000 1.1.2.114 --- desire.c 20 Aug 2006 21:11:21 -0000 1.1.2.115 *************** *** 1760,1802 **** /* ------------------------ event handling ------------------------ */
- #define CURSOR_RUNMODE_NOTHING 0 #define CURSOR_RUNMODE_CLICKME 1 #define CURSOR_RUNMODE_THICKEN 2 #define CURSOR_RUNMODE_ADDPOINT 3 - #define CURSOR_EDITMODE_NOTHING 4 - #define CURSOR_EDITMODE_CONNECT 5 #define CURSOR_EDITMODE_DISCONNECT 6
[...1077 lines suppressed...] - { - if (x->x_selstart) - x->x_selstart--; - while (x->x_selstart > 0 && x->x_buf[x->x_selstart] != '\n') - x->x_selstart--; - x->x_selend = x->x_selstart; - } - else if (!strcmp(keysym->s_name, "Down")) - { - while (x->x_selend < x->x_bufsize && - x->x_buf[x->x_selend] != '\n') - x->x_selend++; - if (x->x_selend < x->x_bufsize) - x->x_selend++; - x->x_selstart = x->x_selend; - } - rtext_senditup(x, SEND_UPDATE, &w, &h, &indx); - } - --- 11916,11917 ----