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            319 src/editor/format.c format_this (unsigned char *t, off_t size, long indent, gboolean utf8)
indent            324 src/editor/format.c     ww = edit_options.word_wrap_line_length * FONT_MEAN_WIDTH - indent;
indent            379 src/editor/format.c edit_insert_indent (WEdit *edit, long indent)
indent            382 src/editor/format.c         while (indent >= TAB_SIZE)
indent            385 src/editor/format.c             indent -= TAB_SIZE;
indent            388 src/editor/format.c     while (indent-- > 0)
indent            396 src/editor/format.c put_paragraph (WEdit *edit, unsigned char *t, off_t p, long indent, off_t size)
indent            403 src/editor/format.c     if (indent != 0)
indent            408 src/editor/format.c         if (i != 0 && indent != 0)
indent            421 src/editor/format.c                 edit_insert_indent (edit, indent);
indent            451 src/editor/format.c     long indent;
indent            453 src/editor/format.c     indent = edit_indent_width (edit, p++);
indent            454 src/editor/format.c     if (indent == 0)
indent            459 src/editor/format.c             && indent != edit_indent_width (edit, p))
indent            461 src/editor/format.c     return indent;
indent            475 src/editor/format.c     long indent;
indent            485 src/editor/format.c     indent = test_indent (edit, p, q);
indent            487 src/editor/format.c     t = get_paragraph (&edit->buffer, p, q, indent != 0);
indent            519 src/editor/format.c     format_this (t2, q - p, indent, edit->utf8);
indent            520 src/editor/format.c     put_paragraph (edit, t2, p, indent, size);