#28071: Vim 7.3.94_0 to 7.3.102_0 +universal fails with symbols not found for i386 --------------------------------------+------------------------------------- Reporter: wintesa@… | Owner: raimue@… Type: defect | Status: new Priority: Normal | Milestone: Component: ports | Version: 1.9.2 Keywords: | Port: vim --------------------------------------+------------------------------------- Comment(by wintesa@…): {{{ 1216 static VALUE window_set_cursor(VALUE self, VALUE pos) 1217 { 1218 VALUE lnum, col; 1219 win_T *win = get_win(self); 1220 1221 Check_Type(pos, T_ARRAY); 1222 if (RARRAY_LEN(pos) != 2) 1223 rb_raise(rb_eArgError, "array length must be 2"); 1224 lnum = RARRAY_PTR(pos)[0]; 1225 col = RARRAY_PTR(pos)[1]; 1226 win->w_cursor.lnum = NUM2LONG(lnum); 1227 win->w_cursor.col = NUM2LONG(col); 1228 check_cursor(); /* put cursor on an existing line */ 1229 update_screen(NOT_VALID); 1230 return Qnil; 1231 } }}} -- Ticket URL: <https://trac.macports.org/ticket/28071#comment:3> MacPorts <http://www.macports.org/> Ports system for Mac OS