indent            169 src/editor/format.c get_paragraph (const edit_buffer_t *buf, off_t p, off_t q, gboolean indent)
indent            177 src/editor/format.c         if (indent && edit_buffer_get_byte (buf, p - 1) == '\n')
indent            325 src/editor/format.c format_this (unsigned char *t, off_t size, long indent, gboolean utf8)
indent            330 src/editor/format.c     ww = edit_options.word_wrap_line_length * FONT_MEAN_WIDTH - indent;
indent            385 src/editor/format.c edit_insert_indent (WEdit *edit, long indent)
indent            388 src/editor/format.c         while (indent >= TAB_SIZE)
indent            391 src/editor/format.c             indent -= TAB_SIZE;
indent            394 src/editor/format.c     while (indent-- > 0)
indent            402 src/editor/format.c put_paragraph (WEdit *edit, unsigned char *t, off_t p, long indent, off_t size)
indent            409 src/editor/format.c     if (indent != 0)
indent            414 src/editor/format.c         if (i != 0 && indent != 0)
indent            427 src/editor/format.c                 edit_insert_indent (edit, indent);
indent            457 src/editor/format.c     long indent;
indent            459 src/editor/format.c     indent = edit_indent_width (edit, p++);
indent            460 src/editor/format.c     if (indent == 0)
indent            465 src/editor/format.c             && indent != edit_indent_width (edit, p))
indent            467 src/editor/format.c     return indent;
indent            481 src/editor/format.c     long indent;
indent            492 src/editor/format.c     indent = test_indent (edit, p, q);
indent            494 src/editor/format.c     t = get_paragraph (&edit->buffer, p, q, indent != 0);
indent            529 src/editor/format.c     format_this (t2, q - p, indent, utf8);
indent            530 src/editor/format.c     put_paragraph (edit, t2, p, indent, size);