# HG changeset patch # User jwe # Date 758069007 0 # Node ID c2189d67a05c3b48be300f4e8061a324c84010bd # Parent 1781618ec8835030d9c3e1a4f9c4d77ad6737507 [project @ 1994-01-08 22:43:22 by jwe] diff -r 1781618ec883 -r c2189d67a05c src/pr-output.cc --- a/src/pr-output.cc Fri Jan 07 19:22:38 1994 +0000 +++ b/src/pr-output.cc Sat Jan 08 22:43:27 1994 +0000 @@ -189,7 +189,7 @@ if (free_format) return; - static char fmt_buf[32]; + static char fmt_buf[128]; int sign = (d < 0.0); @@ -280,7 +280,7 @@ if (free_format) return; - static char fmt_buf[32]; + static char fmt_buf[128]; int sign = any_element_is_negative (m); @@ -394,8 +394,8 @@ if (free_format) return; - static char r_fmt_buf[32]; - static char i_fmt_buf[32]; + static char r_fmt_buf[128]; + static char i_fmt_buf[128]; double rp = c.real (); double ip = c.imag (); @@ -533,8 +533,8 @@ if (free_format) return; - static char r_fmt_buf[32]; - static char i_fmt_buf[32]; + static char r_fmt_buf[128]; + static char i_fmt_buf[128]; Matrix rp = real (cm); Matrix ip = imag (cm); @@ -683,7 +683,7 @@ if (free_format) return; - static char fmt_buf[32]; + static char fmt_buf[128]; double r_min = r.base (); double r_max = r.limit (); diff -r 1781618ec883 -r c2189d67a05c src/utils.cc --- a/src/utils.cc Fri Jan 07 19:22:38 1994 +0000 +++ b/src/utils.cc Sat Jan 08 22:43:27 1994 +0000 @@ -857,7 +857,7 @@ case '#': { - char number_buffer[20]; + char number_buffer[128]; sprintf (number_buffer, "%d", current_command_number); temp = strsave (number_buffer); goto add_string; @@ -865,7 +865,7 @@ case '!': { - char number_buffer[20]; + char number_buffer[128]; int num = current_history_number (); if (num > 0) sprintf (number_buffer, "%d", num);