TAB_SIZE         1368 src/editor/edit.c     curs_col = edit->curs_col % (TAB_SIZE * space_width);
TAB_SIZE         1442 src/editor/edit.c     i = TAB_SIZE * space_width;
TAB_SIZE         1652 src/editor/edit.c         del_tab_width = edit_options.fake_half_tabs ? HALF_TAB_SIZE : TAB_SIZE;
TAB_SIZE         2814 src/editor/edit.c             col += TAB_SIZE - col % TAB_SIZE;
TAB_SIZE          623 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          224 src/editor/editoptions.c         TAB_SIZE = atoi (q);
TAB_SIZE          225 src/editor/editoptions.c         if (TAB_SIZE <= 0)
TAB_SIZE          226 src/editor/editoptions.c             TAB_SIZE = DEFAULT_TAB_SPACING;
TAB_SIZE          209 src/editor/format.c     x += TAB_SIZE - x % TAB_SIZE;
TAB_SIZE          382 src/editor/format.c         while (indent >= TAB_SIZE)
TAB_SIZE          385 src/editor/format.c             indent -= TAB_SIZE;