diff liboctave/str-vec.cc @ 2926:66ef74ee5d9f

[project @ 1997-05-05 03:20:52 by jwe]
author jwe
date Mon, 05 May 1997 03:40:21 +0000
parents 8b262e771614
children 9d26524e2869
line wrap: on
line diff
--- a/liboctave/str-vec.cc
+++ b/liboctave/str-vec.cc
@@ -28,7 +28,7 @@
 
 #include <iostream.h>
 
-#include "oct-term.h"
+#include "cmd-edit.h"
 #include "str-vec.h"
 
 // Create a string vector from a NULL terminated list of C strings.
@@ -80,7 +80,7 @@
 
   // Calculate the maximum number of columns that will fit.
 
-  int line_length = terminal_columns ();
+  int line_length = command_editor::terminal_cols ();
   int cols = line_length / max_name_length;
   if (cols == 0)
     cols = 1;