changeset 2324:24cd3df6f184

(display_string, display_text_line): Allow tab_width up to 1000.
author Richard M. Stallman <rms@gnu.org>
date Tue, 23 Mar 1993 00:54:20 +0000
parents 626d9ac52bc9
children 7b5299f3a8fc
files src/xdisp.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/xdisp.c	Mon Mar 22 23:13:10 1993 +0000
+++ b/src/xdisp.c	Tue Mar 23 00:54:20 1993 +0000
@@ -1579,7 +1579,7 @@
 
   hpos += XFASTINT (w->left);
   get_display_line (f, vpos, XFASTINT (w->left));
-  if (tab_width <= 0 || tab_width > 20) tab_width = 8;
+  if (tab_width <= 0 || tab_width > 1000) tab_width = 8;
 
   if (MINI_WINDOW_P (w) && start == 1
       && vpos == XFASTINT (w->top))
@@ -2476,7 +2476,7 @@
       && XVECTOR (Vstandard_display_table)->size == DISP_TABLE_SIZE)
     dp = XVECTOR (Vstandard_display_table);
 
-  if (tab_width <= 0 || tab_width > 20) tab_width = 8;
+  if (tab_width <= 0 || tab_width > 1000) tab_width = 8;
 
   p1 = p1start;
   start = desired_glyphs->glyphs[vpos] + XFASTINT (w->left);