TAB_SIZE         1399 src/editor/edit.c     curs_col = edit->curs_col % (TAB_SIZE * space_width);
TAB_SIZE         1473 src/editor/edit.c     i = TAB_SIZE * space_width;
TAB_SIZE         1683 src/editor/edit.c         del_tab_width = edit_options.fake_half_tabs ? HALF_TAB_SIZE : TAB_SIZE;
TAB_SIZE         2858 src/editor/edit.c             col += TAB_SIZE - col % TAB_SIZE;
TAB_SIZE          633 src/editor/editdraw.c                         i = TAB_SIZE - ((int) col % TAB_SIZE);
TAB_SIZE          139 src/editor/editoptions.c     g_snprintf (tab_spacing, sizeof (tab_spacing), "%d", TAB_SIZE);
TAB_SIZE          214 src/editor/editoptions.c         TAB_SIZE = atoi (q);
TAB_SIZE          215 src/editor/editoptions.c         if (TAB_SIZE <= 0)
TAB_SIZE          216 src/editor/editoptions.c             TAB_SIZE = DEFAULT_TAB_SPACING;
TAB_SIZE          210 src/editor/format.c     x += TAB_SIZE - x % TAB_SIZE;
TAB_SIZE          389 src/editor/format.c         while (indent >= TAB_SIZE)
TAB_SIZE          392 src/editor/format.c             indent -= TAB_SIZE;