changeset 278:c2189d67a05c

[project @ 1994-01-08 22:43:22 by jwe]
author jwe
date Sat, 08 Jan 1994 22:43:27 +0000
parents 1781618ec883
children c64f870ac8d9
files src/pr-output.cc src/utils.cc
diffstat 2 files changed, 9 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/src/pr-output.cc
+++ b/src/pr-output.cc
@@ -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 ();
--- a/src/utils.cc
+++ b/src/utils.cc
@@ -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);