indent            170 src/editor/format.c get_paragraph (const edit_buffer_t * buf, off_t p, off_t q, gboolean indent)
indent            178 src/editor/format.c         if (indent && edit_buffer_get_byte (buf, p - 1) == '\n')
indent            326 src/editor/format.c format_this (unsigned char *t, off_t size, long indent, gboolean utf8)
indent            331 src/editor/format.c     ww = edit_options.word_wrap_line_length * FONT_MEAN_WIDTH - indent;
indent            386 src/editor/format.c edit_insert_indent (WEdit * edit, long indent)
indent            389 src/editor/format.c         while (indent >= TAB_SIZE)
indent            392 src/editor/format.c             indent -= TAB_SIZE;
indent            395 src/editor/format.c     while (indent-- > 0)
indent            403 src/editor/format.c put_paragraph (WEdit * edit, unsigned char *t, off_t p, long indent, off_t size)
indent            410 src/editor/format.c     if (indent != 0)
indent            415 src/editor/format.c         if (i != 0 && indent != 0)
indent            428 src/editor/format.c                 edit_insert_indent (edit, indent);
indent            458 src/editor/format.c     long indent;
indent            460 src/editor/format.c     indent = edit_indent_width (edit, p++);
indent            461 src/editor/format.c     if (indent == 0)
indent            466 src/editor/format.c             && indent != edit_indent_width (edit, p))
indent            468 src/editor/format.c     return indent;
indent            482 src/editor/format.c     long indent;
indent            493 src/editor/format.c     indent = test_indent (edit, p, q);
indent            495 src/editor/format.c     t = get_paragraph (&edit->buffer, p, q, indent != 0);
indent            530 src/editor/format.c     format_this (t2, q - p, indent, utf8);
indent            531 src/editor/format.c     put_paragraph (edit, t2, p, indent, size);