copy_buf         1328 src/editor/editcmd.c     GString *copy_buf;
copy_buf         1334 src/editor/editcmd.c     copy_buf = edit_get_block (edit, start_mark, end_mark);
copy_buf         1345 src/editor/editcmd.c         edit_insert_column_of_text (edit, copy_buf, col_delta, &mark1, &mark2, &c1, &c2);
copy_buf         1349 src/editor/editcmd.c         for (gsize i = copy_buf->len; i != 0; i--)
copy_buf         1350 src/editor/editcmd.c             edit_insert_ahead (edit, copy_buf->str[i - 1]);
copy_buf         1354 src/editor/editcmd.c             edit_cursor_move (edit, copy_buf->len);
copy_buf         1357 src/editor/editcmd.c     g_string_free (copy_buf, TRUE);
copy_buf         1392 src/editor/editcmd.c         GString *copy_buf;
copy_buf         1418 src/editor/editcmd.c         copy_buf = edit_get_block (edit, start_mark, end_mark);
copy_buf         1434 src/editor/editcmd.c         edit_insert_column_of_text (edit, copy_buf, b_width, &mark1, &mark2, &c1, &c2);
copy_buf         1436 src/editor/editcmd.c         g_string_free (copy_buf, TRUE);
copy_buf         1440 src/editor/editcmd.c         unsigned char *copy_buf;
copy_buf         1445 src/editor/editcmd.c         copy_buf = g_malloc0 (end_mark - start_mark);
copy_buf         1450 src/editor/editcmd.c             copy_buf[end_mark - count - 1] = edit_delete (edit, TRUE);
copy_buf         1458 src/editor/editcmd.c             edit_insert_ahead (edit, copy_buf[end_mark - count - 1]);
copy_buf         1459 src/editor/editcmd.c         g_free (copy_buf);
copy_buf          184 tests/src/editor/edit_insert_column_of_text.c     GString *copy_buf;
copy_buf          204 tests/src/editor/edit_insert_column_of_text.c     copy_buf = test_get_block (start_mark, end_mark);
copy_buf          209 tests/src/editor/edit_insert_column_of_text.c     edit_insert_column_of_text (test_edit, copy_buf, col_delta, &start_pos, &end_pos, &col1, &col2);
copy_buf          211 tests/src/editor/edit_insert_column_of_text.c     g_string_free (copy_buf, TRUE);