diff liboctave/Array-flags.cc @ 1904:6dd50f51cf0c

[project @ 1996-02-10 01:03:40 by jwe]
author jwe
date Sat, 10 Feb 1996 01:06:30 +0000
parents 1281a23a34dd
children 1b57120c997b
line wrap: on
line diff
--- a/liboctave/Array-flags.cc
+++ b/liboctave/Array-flags.cc
@@ -31,16 +31,10 @@
 
 #if defined (HEAVYWEIGHT_INDEXING)
 #if defined (OCTAVE_SOURCE)
-#include "user-prefs.h"
-int& dfi_flag = user_pref.do_fortran_indexing;
-int& pcv_flag = user_pref.prefer_column_vectors;
-int& pzo_flag = user_pref.prefer_zero_one_indexing;
-int& rre_flag = user_pref.resize_on_range_error;
-#else
-int dfi_flag = 0;
-int pcv_flag = 0;
-int pzo_flag = 0;
-int rre_flag = 0;
+int liboctave_dfi_flag = 0;
+int liboctave_pcv_flag = 0;
+int liboctave_pzo_flag = 0;
+int liboctave_rre_flag = 0;
 #endif
 #endif