changeset 28971:02b97abbc6fc

maint: rename .oct_config files to .oct-config In Octave, we generally prefer hyphens over underscores in file names unless underscores are required for other reasons (for example, function names in the scripting language are not allowed to contain hyphens). * .oct-config files renamed from .oct_config: scripts/.oct-config, scripts/audio/.oct-config, scripts/deprecated/.oct-config, scripts/elfun/.oct-config, scripts/general/.oct-config, scripts/geometry/.oct-config, scripts/gui/.oct-config, scripts/help/.oct-config, scripts/image/.oct-config, scripts/io/.oct-config, scripts/java/.oct-config, scripts/legacy/.oct-config, scripts/linear-algebra/.oct-config, scripts/miscellaneous/.oct-config, scripts/ode/.oct-config, scripts/optimization/.oct-config, scripts/path/.oct-config, scripts/pkg/.oct-config, scripts/plot/appearance/.oct-config, scripts/plot/draw/.oct-config, scripts/plot/util/.oct-config, scripts/polynomial/.oct-config, scripts/prefs/.oct-config, scripts/profiler/.oct-config, scripts/set/.oct-config, scripts/signal/.oct-config, scripts/sparse/.oct-config, scripts/specfun/.oct-config, scripts/special-matrix/.oct-config, scripts/statistics/.oct-config, scripts/strings/.oct-config, scripts/testfun/.oct-config, scripts/time/.oct-config, scripts/web/.oct-config. * module.mk files updated: scripts/audio/module.mk, scripts/deprecated/module.mk, scripts/elfun/module.mk, scripts/general/module.mk, scripts/geometry/module.mk, scripts/gui/module.mk, scripts/help/module.mk, scripts/image/module.mk, scripts/io/module.mk, scripts/java/module.mk, scripts/legacy/module.mk, scripts/linear-algebra/module.mk, scripts/miscellaneous/module.mk, scripts/module.mk, scripts/ode/module.mk, scripts/optimization/module.mk, scripts/path/module.mk, scripts/pkg/module.mk, scripts/plot/appearance/module.mk, scripts/plot/draw/module.mk, scripts/plot/util/module.mk, scripts/polynomial/module.mk, scripts/prefs/module.mk, scripts/profiler/module.mk, scripts/set/module.mk, scripts/signal/module.mk, scripts/sparse/module.mk, scripts/specfun/module.mk, scripts/special-matrix/module.mk, scripts/statistics/module.mk, scripts/strings/module.mk, scripts/testfun/module.mk, scripts/time/module.mk, scripts/web/module.mk. * input.cc, load-path.cc: Change .oct_config to .oct-config in functions and doc strings.
author John W. Eaton <jwe@octave.org>
date Tue, 20 Oct 2020 16:02:07 -0400
parents 885d35d5fde3
children fdb7c296505a
files libinterp/corefcn/input.cc libinterp/corefcn/load-path.cc scripts/.oct-config scripts/.oct_config scripts/audio/.oct-config scripts/audio/.oct_config scripts/audio/module.mk scripts/deprecated/.oct-config scripts/deprecated/.oct_config scripts/deprecated/module.mk scripts/elfun/.oct-config scripts/elfun/.oct_config scripts/elfun/module.mk scripts/general/.oct-config scripts/general/.oct_config scripts/general/module.mk scripts/geometry/.oct-config scripts/geometry/.oct_config scripts/geometry/module.mk scripts/gui/.oct-config scripts/gui/.oct_config scripts/gui/module.mk scripts/help/.oct-config scripts/help/.oct_config scripts/help/module.mk scripts/image/.oct-config scripts/image/.oct_config scripts/image/module.mk scripts/io/.oct-config scripts/io/.oct_config scripts/io/module.mk scripts/java/.oct-config scripts/java/.oct_config scripts/java/module.mk scripts/legacy/.oct-config scripts/legacy/.oct_config scripts/legacy/module.mk scripts/linear-algebra/.oct-config scripts/linear-algebra/.oct_config scripts/linear-algebra/module.mk scripts/miscellaneous/.oct-config scripts/miscellaneous/.oct_config scripts/miscellaneous/module.mk scripts/module.mk scripts/ode/.oct-config scripts/ode/.oct_config scripts/ode/module.mk scripts/optimization/.oct-config scripts/optimization/.oct_config scripts/optimization/module.mk scripts/path/.oct-config scripts/path/.oct_config scripts/path/module.mk scripts/pkg/.oct-config scripts/pkg/.oct_config scripts/pkg/module.mk scripts/plot/appearance/.oct-config scripts/plot/appearance/.oct_config scripts/plot/appearance/module.mk scripts/plot/draw/.oct-config scripts/plot/draw/.oct_config scripts/plot/draw/module.mk scripts/plot/util/.oct-config scripts/plot/util/.oct_config scripts/plot/util/module.mk scripts/polynomial/.oct-config scripts/polynomial/.oct_config scripts/polynomial/module.mk scripts/prefs/.oct-config scripts/prefs/.oct_config scripts/prefs/module.mk scripts/profiler/.oct-config scripts/profiler/.oct_config scripts/profiler/module.mk scripts/set/.oct-config scripts/set/.oct_config scripts/set/module.mk scripts/signal/.oct-config scripts/signal/.oct_config scripts/signal/module.mk scripts/sparse/.oct-config scripts/sparse/.oct_config scripts/sparse/module.mk scripts/specfun/.oct-config scripts/specfun/.oct_config scripts/specfun/module.mk scripts/special-matrix/.oct-config scripts/special-matrix/.oct_config scripts/special-matrix/module.mk scripts/statistics/.oct-config scripts/statistics/.oct_config scripts/statistics/module.mk scripts/strings/.oct-config scripts/strings/.oct_config scripts/strings/module.mk scripts/testfun/.oct-config scripts/testfun/.oct_config scripts/testfun/module.mk scripts/time/.oct-config scripts/time/.oct_config scripts/time/module.mk scripts/web/.oct-config scripts/web/.oct_config scripts/web/module.mk
diffstat 104 files changed, 71 insertions(+), 71 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/corefcn/input.cc	Wed Oct 21 11:44:19 2020 -0700
+++ b/libinterp/corefcn/input.cc	Tue Oct 20 16:02:07 2020 -0400
@@ -1528,13 +1528,13 @@
 or @var{prev_encoding}, respectively.  The output argument must be explicitly
 requested.
 
-The directory encoding is automatically read from the file @file{.oct_config}
+The directory encoding is automatically read from the file @file{.oct-config}
 when a new path is added to the load path (for example with @code{addpath}).
 To set the encoding for all files in the same folder, that file must contain
 a line starting with @code{"encoding="} followed by the encoding identifier.
 
 For example to set the file encoding for all files in the same folder to
-ISO 8859-1 (Latin-1), create a file @file{.oct_config} with the following
+ISO 8859-1 (Latin-1), create a file @file{.oct-config} with the following
 content:
 
 @example
--- a/libinterp/corefcn/load-path.cc	Wed Oct 21 11:44:19 2020 -0700
+++ b/libinterp/corefcn/load-path.cc	Tue Oct 20 16:02:07 2020 -0400
@@ -1142,7 +1142,7 @@
   {
     // read file with directory configuration
     std::string conf_file = dir + sys::file_ops::dir_sep_str ()
-                            + ".oct_config";
+                            + ".oct-config";
 
     FILE* cfile = sys::fopen (conf_file, "rb");
 
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/.oct-config	Tue Oct 20 16:02:07 2020 -0400
@@ -0,0 +1,1 @@
+encoding=utf-8
--- a/scripts/.oct_config	Wed Oct 21 11:44:19 2020 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-encoding=utf-8
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/audio/.oct-config	Tue Oct 20 16:02:07 2020 -0400
@@ -0,0 +1,1 @@
+encoding=utf-8
--- a/scripts/audio/.oct_config	Wed Oct 21 11:44:19 2020 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-encoding=utf-8
--- a/scripts/audio/module.mk	Wed Oct 21 11:44:19 2020 -0700
+++ b/scripts/audio/module.mk	Tue Oct 20 16:02:07 2020 -0400
@@ -4,7 +4,7 @@
   %reldir%/@audiorecorder
 
 %canon_reldir%_FCN_FILES = \
-  %reldir%/.oct_config \
+  %reldir%/.oct-config \
   %reldir%/lin2mu.m \
   %reldir%/mu2lin.m \
   %reldir%/record.m \
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/deprecated/.oct-config	Tue Oct 20 16:02:07 2020 -0400
@@ -0,0 +1,1 @@
+encoding=utf-8
--- a/scripts/deprecated/.oct_config	Wed Oct 21 11:44:19 2020 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-encoding=utf-8
--- a/scripts/deprecated/module.mk	Wed Oct 21 11:44:19 2020 -0700
+++ b/scripts/deprecated/module.mk	Tue Oct 20 16:02:07 2020 -0400
@@ -1,7 +1,7 @@
 FCN_FILE_DIRS += %reldir%
 
 %canon_reldir%_FCN_FILES = \
-  %reldir%/.oct_config \
+  %reldir%/.oct-config \
   %reldir%/runtests.m
 
 %canon_reldir%dir = $(fcnfiledir)/deprecated
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/elfun/.oct-config	Tue Oct 20 16:02:07 2020 -0400
@@ -0,0 +1,1 @@
+encoding=utf-8
--- a/scripts/elfun/.oct_config	Wed Oct 21 11:44:19 2020 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-encoding=utf-8
--- a/scripts/elfun/module.mk	Wed Oct 21 11:44:19 2020 -0700
+++ b/scripts/elfun/module.mk	Tue Oct 20 16:02:07 2020 -0400
@@ -1,7 +1,7 @@
 FCN_FILE_DIRS += %reldir%
 
 %canon_reldir%_FCN_FILES = \
-  %reldir%/.oct_config \
+  %reldir%/.oct-config \
   %reldir%/acosd.m \
   %reldir%/acot.m \
   %reldir%/acotd.m \
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/general/.oct-config	Tue Oct 20 16:02:07 2020 -0400
@@ -0,0 +1,1 @@
+encoding=utf-8
--- a/scripts/general/.oct_config	Wed Oct 21 11:44:19 2020 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-encoding=utf-8
--- a/scripts/general/module.mk	Wed Oct 21 11:44:19 2020 -0700
+++ b/scripts/general/module.mk	Tue Oct 20 16:02:07 2020 -0400
@@ -6,7 +6,7 @@
   %reldir%/private/__splinen__.m
 
 %canon_reldir%_FCN_FILES = \
-  %reldir%/.oct_config \
+  %reldir%/.oct-config \
   %reldir%/accumarray.m \
   %reldir%/accumdim.m \
   %reldir%/bincoeff.m \
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/geometry/.oct-config	Tue Oct 20 16:02:07 2020 -0400
@@ -0,0 +1,1 @@
+encoding=utf-8
--- a/scripts/geometry/.oct_config	Wed Oct 21 11:44:19 2020 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-encoding=utf-8
--- a/scripts/geometry/module.mk	Wed Oct 21 11:44:19 2020 -0700
+++ b/scripts/geometry/module.mk	Tue Oct 20 16:02:07 2020 -0400
@@ -1,7 +1,7 @@
 FCN_FILE_DIRS += %reldir%
 
 %canon_reldir%_FCN_FILES = \
-  %reldir%/.oct_config \
+  %reldir%/.oct-config \
   %reldir%/convhull.m \
   %reldir%/delaunay.m \
   %reldir%/delaunayn.m \
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/gui/.oct-config	Tue Oct 20 16:02:07 2020 -0400
@@ -0,0 +1,1 @@
+encoding=utf-8
--- a/scripts/gui/.oct_config	Wed Oct 21 11:44:19 2020 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-encoding=utf-8
--- a/scripts/gui/module.mk	Wed Oct 21 11:44:19 2020 -0700
+++ b/scripts/gui/module.mk	Tue Oct 20 16:02:07 2020 -0400
@@ -14,7 +14,7 @@
   %reldir%/private/__uiputfile_fltk__.m
 
 %canon_reldir%_FCN_FILES = \
-  %reldir%/.oct_config \
+  %reldir%/.oct-config \
   %reldir%/dialog.m \
   %reldir%/errordlg.m \
   %reldir%/getappdata.m \
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/help/.oct-config	Tue Oct 20 16:02:07 2020 -0400
@@ -0,0 +1,1 @@
+encoding=utf-8
--- a/scripts/help/.oct_config	Wed Oct 21 11:44:19 2020 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-encoding=utf-8
--- a/scripts/help/module.mk	Wed Oct 21 11:44:19 2020 -0700
+++ b/scripts/help/module.mk	Tue Oct 20 16:02:07 2020 -0400
@@ -7,7 +7,7 @@
   %reldir%/private/__strip_html_tags__.m
 
 %canon_reldir%_FCN_FILES = \
-  %reldir%/.oct_config \
+  %reldir%/.oct-config \
   %reldir%/__gripe_missing_component__.m \
   %reldir%/__makeinfo__.m \
   %reldir%/__unimplemented__.m \
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/image/.oct-config	Tue Oct 20 16:02:07 2020 -0400
@@ -0,0 +1,1 @@
+encoding=utf-8
--- a/scripts/image/.oct_config	Wed Oct 21 11:44:19 2020 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-encoding=utf-8
--- a/scripts/image/module.mk	Wed Oct 21 11:44:19 2020 -0700
+++ b/scripts/image/module.mk	Tue Oct 20 16:02:07 2020 -0400
@@ -13,7 +13,7 @@
   %reldir%/private/ind2x.m
 
 %canon_reldir%_FCN_FILES = \
-  %reldir%/.oct_config \
+  %reldir%/.oct-config \
   %reldir%/autumn.m \
   %reldir%/bone.m \
   %reldir%/brighten.m \
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/io/.oct-config	Tue Oct 20 16:02:07 2020 -0400
@@ -0,0 +1,1 @@
+encoding=utf-8
--- a/scripts/io/.oct_config	Wed Oct 21 11:44:19 2020 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-encoding=utf-8
--- a/scripts/io/module.mk	Wed Oct 21 11:44:19 2020 -0700
+++ b/scripts/io/module.mk	Tue Oct 20 16:02:07 2020 -0400
@@ -1,7 +1,7 @@
 FCN_FILE_DIRS += %reldir%
 
 %canon_reldir%_FCN_FILES = \
-  %reldir%/.oct_config \
+  %reldir%/.oct-config \
   %reldir%/beep.m \
   %reldir%/csvread.m \
   %reldir%/csvwrite.m \
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/java/.oct-config	Tue Oct 20 16:02:07 2020 -0400
@@ -0,0 +1,1 @@
+encoding=utf-8
--- a/scripts/java/.oct_config	Wed Oct 21 11:44:19 2020 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-encoding=utf-8
--- a/scripts/java/module.mk	Wed Oct 21 11:44:19 2020 -0700
+++ b/scripts/java/module.mk	Tue Oct 20 16:02:07 2020 -0400
@@ -1,7 +1,7 @@
 FCN_FILE_DIRS += %reldir%
 
 %canon_reldir%_FCN_FILES = \
-  %reldir%/.oct_config \
+  %reldir%/.oct-config \
   %reldir%/javaArray.m \
   %reldir%/java_get.m \
   %reldir%/java_set.m \
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/legacy/.oct-config	Tue Oct 20 16:02:07 2020 -0400
@@ -0,0 +1,1 @@
+encoding=utf-8
--- a/scripts/legacy/.oct_config	Wed Oct 21 11:44:19 2020 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-encoding=utf-8
--- a/scripts/legacy/module.mk	Wed Oct 21 11:44:19 2020 -0700
+++ b/scripts/legacy/module.mk	Tue Oct 20 16:02:07 2020 -0400
@@ -1,7 +1,7 @@
 FCN_FILE_DIRS += %reldir%
 
 %canon_reldir%_FCN_FILES = \
-  %reldir%/.oct_config \
+  %reldir%/.oct-config \
   %reldir%/__vectorize__.m \
   %reldir%/findstr.m \
   %reldir%/flipdim.m \
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/linear-algebra/.oct-config	Tue Oct 20 16:02:07 2020 -0400
@@ -0,0 +1,1 @@
+encoding=utf-8
--- a/scripts/linear-algebra/.oct_config	Wed Oct 21 11:44:19 2020 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-encoding=utf-8
--- a/scripts/linear-algebra/module.mk	Wed Oct 21 11:44:19 2020 -0700
+++ b/scripts/linear-algebra/module.mk	Tue Oct 20 16:02:07 2020 -0400
@@ -1,7 +1,7 @@
 FCN_FILE_DIRS += %reldir%
 
 %canon_reldir%_FCN_FILES = \
-  %reldir%/.oct_config \
+  %reldir%/.oct-config \
   %reldir%/bandwidth.m \
   %reldir%/commutation_matrix.m \
   %reldir%/cond.m \
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/miscellaneous/.oct-config	Tue Oct 20 16:02:07 2020 -0400
@@ -0,0 +1,1 @@
+encoding=utf-8
--- a/scripts/miscellaneous/.oct_config	Wed Oct 21 11:44:19 2020 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-encoding=utf-8
--- a/scripts/miscellaneous/module.mk	Wed Oct 21 11:44:19 2020 -0700
+++ b/scripts/miscellaneous/module.mk	Tue Oct 20 16:02:07 2020 -0400
@@ -10,7 +10,7 @@
   %reldir%/private/tar_is_bsd.m
 
 %canon_reldir%_FCN_FILES = \
-  %reldir%/.oct_config \
+  %reldir%/.oct-config \
   %reldir%/bug_report.m \
   %reldir%/bunzip2.m \
   %reldir%/cast.m \
--- a/scripts/module.mk	Wed Oct 21 11:44:19 2020 -0700
+++ b/scripts/module.mk	Tue Oct 20 16:02:07 2020 -0400
@@ -51,7 +51,7 @@
 FCN_FILE_DIRS += %reldir%/@ftp
 
 %canon_reldir%_FCN_FILES = \
-  %reldir%/.oct_config
+  %reldir%/.oct-config
 
 %canon_reldir%_@ftp_FCN_FILES = \
   %reldir%/@ftp/ascii.m \
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/ode/.oct-config	Tue Oct 20 16:02:07 2020 -0400
@@ -0,0 +1,1 @@
+encoding=utf-8
--- a/scripts/ode/.oct_config	Wed Oct 21 11:44:19 2020 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-encoding=utf-8
--- a/scripts/ode/module.mk	Wed Oct 21 11:44:19 2020 -0700
+++ b/scripts/ode/module.mk	Tue Oct 20 16:02:07 2020 -0400
@@ -17,7 +17,7 @@
   %reldir%/private/starting_stepsize.m
 
 %canon_reldir%_FCN_FILES =  \
-  %reldir%/.oct_config \
+  %reldir%/.oct-config \
   %reldir%/decic.m \
   %reldir%/ode15i.m \
   %reldir%/ode15s.m \
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/optimization/.oct-config	Tue Oct 20 16:02:07 2020 -0400
@@ -0,0 +1,1 @@
+encoding=utf-8
--- a/scripts/optimization/.oct_config	Wed Oct 21 11:44:19 2020 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-encoding=utf-8
--- a/scripts/optimization/module.mk	Wed Oct 21 11:44:19 2020 -0700
+++ b/scripts/optimization/module.mk	Tue Oct 20 16:02:07 2020 -0400
@@ -6,7 +6,7 @@
   %reldir%/private/__fdjac__.m
 
 %canon_reldir%_FCN_FILES = \
-  %reldir%/.oct_config \
+  %reldir%/.oct-config \
   %reldir%/__all_opts__.m \
   %reldir%/fminbnd.m \
   %reldir%/fminsearch.m \
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/path/.oct-config	Tue Oct 20 16:02:07 2020 -0400
@@ -0,0 +1,1 @@
+encoding=utf-8
--- a/scripts/path/.oct_config	Wed Oct 21 11:44:19 2020 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-encoding=utf-8
--- a/scripts/path/module.mk	Wed Oct 21 11:44:19 2020 -0700
+++ b/scripts/path/module.mk	Tue Oct 20 16:02:07 2020 -0400
@@ -6,7 +6,7 @@
   %reldir%/private/getsavepath.m
 
 %canon_reldir%_FCN_FILES = \
-  %reldir%/.oct_config \
+  %reldir%/.oct-config \
   %reldir%/import.m \
   %reldir%/matlabroot.m \
   %reldir%/pathdef.m \
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/pkg/.oct-config	Tue Oct 20 16:02:07 2020 -0400
@@ -0,0 +1,1 @@
+encoding=utf-8
--- a/scripts/pkg/.oct_config	Wed Oct 21 11:44:19 2020 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-encoding=utf-8
--- a/scripts/pkg/module.mk	Wed Oct 21 11:44:19 2020 -0700
+++ b/scripts/pkg/module.mk	Tue Oct 20 16:02:07 2020 -0400
@@ -29,7 +29,7 @@
   %reldir%/private/unload_packages.m
 
 %canon_reldir%_FCN_FILES = \
-  %reldir%/.oct_config \
+  %reldir%/.oct-config \
   %reldir%/pkg.m
 
 %canon_reldir%dir = $(fcnfiledir)/pkg
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/plot/appearance/.oct-config	Tue Oct 20 16:02:07 2020 -0400
@@ -0,0 +1,1 @@
+encoding=utf-8
--- a/scripts/plot/appearance/.oct_config	Wed Oct 21 11:44:19 2020 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-encoding=utf-8
--- a/scripts/plot/appearance/module.mk	Wed Oct 21 11:44:19 2020 -0700
+++ b/scripts/plot/appearance/module.mk	Tue Oct 20 16:02:07 2020 -0400
@@ -8,7 +8,7 @@
   %reldir%/private/__gnuplot_legend__.m
 
 %canon_reldir%_FCN_FILES = \
-  %reldir%/.oct_config \
+  %reldir%/.oct-config \
   %reldir%/__clabel__.m \
   %reldir%/__getlegenddata__.m \
   %reldir%/__rotate_around_axis__.m \
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/plot/draw/.oct-config	Tue Oct 20 16:02:07 2020 -0400
@@ -0,0 +1,1 @@
+encoding=utf-8
--- a/scripts/plot/draw/.oct_config	Wed Oct 21 11:44:19 2020 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-encoding=utf-8
--- a/scripts/plot/draw/module.mk	Wed Oct 21 11:44:19 2020 -0700
+++ b/scripts/plot/draw/module.mk	Tue Oct 20 16:02:07 2020 -0400
@@ -22,7 +22,7 @@
   %reldir%/private/__unite_shared_vertices__.m
 
 %canon_reldir%_FCN_FILES = \
-  %reldir%/.oct_config \
+  %reldir%/.oct-config \
   %reldir%/area.m \
   %reldir%/bar.m \
   %reldir%/barh.m \
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/plot/util/.oct-config	Tue Oct 20 16:02:07 2020 -0400
@@ -0,0 +1,1 @@
+encoding=utf-8
--- a/scripts/plot/util/.oct_config	Wed Oct 21 11:44:19 2020 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-encoding=utf-8
--- a/scripts/plot/util/module.mk	Wed Oct 21 11:44:19 2020 -0700
+++ b/scripts/plot/util/module.mk	Tue Oct 20 16:02:07 2020 -0400
@@ -24,7 +24,7 @@
   %reldir%/private/__set_default_mouse_modes__.m
 
 %canon_reldir%_FCN_FILES = \
-  %reldir%/.oct_config \
+  %reldir%/.oct-config \
   %reldir%/__actual_axis_position__.m \
   %reldir%/__default_plot_options__.m \
   %reldir%/__gnuplot_drawnow__.m \
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/polynomial/.oct-config	Tue Oct 20 16:02:07 2020 -0400
@@ -0,0 +1,1 @@
+encoding=utf-8
--- a/scripts/polynomial/.oct_config	Wed Oct 21 11:44:19 2020 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-encoding=utf-8
--- a/scripts/polynomial/module.mk	Wed Oct 21 11:44:19 2020 -0700
+++ b/scripts/polynomial/module.mk	Tue Oct 20 16:02:07 2020 -0400
@@ -6,7 +6,7 @@
   %reldir%/private/__splinefit__.m
 
 %canon_reldir%_FCN_FILES = \
-  %reldir%/.oct_config \
+  %reldir%/.oct-config \
   %reldir%/compan.m \
   %reldir%/conv.m \
   %reldir%/deconv.m \
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/prefs/.oct-config	Tue Oct 20 16:02:07 2020 -0400
@@ -0,0 +1,1 @@
+encoding=utf-8
--- a/scripts/prefs/.oct_config	Wed Oct 21 11:44:19 2020 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-encoding=utf-8
--- a/scripts/prefs/module.mk	Wed Oct 21 11:44:19 2020 -0700
+++ b/scripts/prefs/module.mk	Tue Oct 20 16:02:07 2020 -0400
@@ -8,7 +8,7 @@
   %reldir%/private/saveprefs.m
 
 %canon_reldir%_FCN_FILES = \
-  %reldir%/.oct_config \
+  %reldir%/.oct-config \
   %reldir%/addpref.m \
   %reldir%/getpref.m \
   %reldir%/ispref.m \
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/profiler/.oct-config	Tue Oct 20 16:02:07 2020 -0400
@@ -0,0 +1,1 @@
+encoding=utf-8
--- a/scripts/profiler/.oct_config	Wed Oct 21 11:44:19 2020 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-encoding=utf-8
--- a/scripts/profiler/module.mk	Wed Oct 21 11:44:19 2020 -0700
+++ b/scripts/profiler/module.mk	Tue Oct 20 16:02:07 2020 -0400
@@ -1,7 +1,7 @@
 FCN_FILE_DIRS += %reldir%
 
 %canon_reldir%_FCN_FILES = \
-  %reldir%/.oct_config \
+  %reldir%/.oct-config \
   %reldir%/profexplore.m \
   %reldir%/profexport.m \
   %reldir%/profile.m \
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/set/.oct-config	Tue Oct 20 16:02:07 2020 -0400
@@ -0,0 +1,1 @@
+encoding=utf-8
--- a/scripts/set/.oct_config	Wed Oct 21 11:44:19 2020 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-encoding=utf-8
--- a/scripts/set/module.mk	Wed Oct 21 11:44:19 2020 -0700
+++ b/scripts/set/module.mk	Tue Oct 20 16:02:07 2020 -0400
@@ -6,7 +6,7 @@
   %reldir%/private/validsetargs.m
 
 %canon_reldir%_FCN_FILES = \
-  %reldir%/.oct_config \
+  %reldir%/.oct-config \
   %reldir%/intersect.m \
   %reldir%/ismember.m \
   %reldir%/powerset.m \
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/signal/.oct-config	Tue Oct 20 16:02:07 2020 -0400
@@ -0,0 +1,1 @@
+encoding=utf-8
--- a/scripts/signal/.oct_config	Wed Oct 21 11:44:19 2020 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-encoding=utf-8
--- a/scripts/signal/module.mk	Wed Oct 21 11:44:19 2020 -0700
+++ b/scripts/signal/module.mk	Tue Oct 20 16:02:07 2020 -0400
@@ -9,7 +9,7 @@
   %reldir%/private/triangle_sw.m
 
 %canon_reldir%_FCN_FILES = \
-  %reldir%/.oct_config \
+  %reldir%/.oct-config \
   %reldir%/__parse_movargs__.m \
   %reldir%/arch_fit.m \
   %reldir%/arch_rnd.m \
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/sparse/.oct-config	Tue Oct 20 16:02:07 2020 -0400
@@ -0,0 +1,1 @@
+encoding=utf-8
--- a/scripts/sparse/.oct_config	Wed Oct 21 11:44:19 2020 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-encoding=utf-8
--- a/scripts/sparse/module.mk	Wed Oct 21 11:44:19 2020 -0700
+++ b/scripts/sparse/module.mk	Tue Oct 20 16:02:07 2020 -0400
@@ -8,7 +8,7 @@
   %reldir%/private/__sprand__.m
 
 %canon_reldir%_FCN_FILES = \
-  %reldir%/.oct_config \
+  %reldir%/.oct-config \
   %reldir%/bicg.m \
   %reldir%/bicgstab.m \
   %reldir%/cgs.m \
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/specfun/.oct-config	Tue Oct 20 16:02:07 2020 -0400
@@ -0,0 +1,1 @@
+encoding=utf-8
--- a/scripts/specfun/.oct_config	Wed Oct 21 11:44:19 2020 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-encoding=utf-8
--- a/scripts/specfun/module.mk	Wed Oct 21 11:44:19 2020 -0700
+++ b/scripts/specfun/module.mk	Tue Oct 20 16:02:07 2020 -0400
@@ -1,7 +1,7 @@
 FCN_FILE_DIRS += %reldir%
 
 %canon_reldir%_FCN_FILES = \
-  %reldir%/.oct_config \
+  %reldir%/.oct-config \
   %reldir%/beta.m \
   %reldir%/betainc.m \
   %reldir%/betaincinv.m \
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/special-matrix/.oct-config	Tue Oct 20 16:02:07 2020 -0400
@@ -0,0 +1,1 @@
+encoding=utf-8
--- a/scripts/special-matrix/.oct_config	Wed Oct 21 11:44:19 2020 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-encoding=utf-8
--- a/scripts/special-matrix/module.mk	Wed Oct 21 11:44:19 2020 -0700
+++ b/scripts/special-matrix/module.mk	Tue Oct 20 16:02:07 2020 -0400
@@ -1,7 +1,7 @@
 FCN_FILE_DIRS += %reldir%
 
 %canon_reldir%_FCN_FILES = \
-  %reldir%/.oct_config \
+  %reldir%/.oct-config \
   %reldir%/gallery.m \
   %reldir%/hadamard.m \
   %reldir%/hankel.m \
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/statistics/.oct-config	Tue Oct 20 16:02:07 2020 -0400
@@ -0,0 +1,1 @@
+encoding=utf-8
--- a/scripts/statistics/.oct_config	Wed Oct 21 11:44:19 2020 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-encoding=utf-8
--- a/scripts/statistics/module.mk	Wed Oct 21 11:44:19 2020 -0700
+++ b/scripts/statistics/module.mk	Tue Oct 20 16:02:07 2020 -0400
@@ -1,7 +1,7 @@
 FCN_FILE_DIRS += %reldir%
 
 %canon_reldir%_FCN_FILES = \
-  %reldir%/.oct_config \
+  %reldir%/.oct-config \
   %reldir%/bounds.m \
   %reldir%/center.m \
   %reldir%/corr.m \
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/strings/.oct-config	Tue Oct 20 16:02:07 2020 -0400
@@ -0,0 +1,1 @@
+encoding=utf-8
--- a/scripts/strings/.oct_config	Wed Oct 21 11:44:19 2020 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-encoding=utf-8
--- a/scripts/strings/module.mk	Wed Oct 21 11:44:19 2020 -0700
+++ b/scripts/strings/module.mk	Tue Oct 20 16:02:07 2020 -0400
@@ -1,7 +1,7 @@
 FCN_FILE_DIRS += %reldir%
 
 %canon_reldir%_FCN_FILES = \
-  %reldir%/.oct_config \
+  %reldir%/.oct-config \
   %reldir%/base2dec.m \
   %reldir%/bin2dec.m \
   %reldir%/blanks.m \
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/testfun/.oct-config	Tue Oct 20 16:02:07 2020 -0400
@@ -0,0 +1,1 @@
+encoding=utf-8
--- a/scripts/testfun/.oct_config	Wed Oct 21 11:44:19 2020 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-encoding=utf-8
--- a/scripts/testfun/module.mk	Wed Oct 21 11:44:19 2020 -0700
+++ b/scripts/testfun/module.mk	Tue Oct 20 16:02:07 2020 -0400
@@ -9,7 +9,7 @@
   %reldir%/private/html_plot_demos_template.html
 
 %canon_reldir%_FCN_FILES = \
-  %reldir%/.oct_config \
+  %reldir%/.oct-config \
   %reldir%/__debug_octave__.m \
   %reldir%/__have_feature__.m \
   %reldir%/__printf_assert__.m \
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/time/.oct-config	Tue Oct 20 16:02:07 2020 -0400
@@ -0,0 +1,1 @@
+encoding=utf-8
--- a/scripts/time/.oct_config	Wed Oct 21 11:44:19 2020 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-encoding=utf-8
--- a/scripts/time/module.mk	Wed Oct 21 11:44:19 2020 -0700
+++ b/scripts/time/module.mk	Tue Oct 20 16:02:07 2020 -0400
@@ -1,7 +1,7 @@
 FCN_FILE_DIRS += %reldir%
 
 %canon_reldir%_FCN_FILES = \
-  %reldir%/.oct_config \
+  %reldir%/.oct-config \
   %reldir%/addtodate.m \
   %reldir%/asctime.m \
   %reldir%/calendar.m \
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/web/.oct-config	Tue Oct 20 16:02:07 2020 -0400
@@ -0,0 +1,1 @@
+encoding=utf-8
--- a/scripts/web/.oct_config	Wed Oct 21 11:44:19 2020 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-encoding=utf-8
--- a/scripts/web/module.mk	Wed Oct 21 11:44:19 2020 -0700
+++ b/scripts/web/module.mk	Tue Oct 20 16:02:07 2020 -0400
@@ -1,7 +1,7 @@
 FCN_FILE_DIRS += %reldir%
 
 %canon_reldir%_FCN_FILES = \
-  %reldir%/.oct_config \
+  %reldir%/.oct-config \
   %reldir%/web.m \
   %reldir%/weboptions.m \
   %reldir%/webread.m \