changeset 30033:d8ae55260760

maint: use "m_" prefix for member variables generated by mk-opts.pl Affects DASPK_options, DASRT_options, DASSL_options, LSODE_options, Quad_options. * mk-opts.pl: use "m_" prefix rather than "x_" prefix for member variables.
author Rik <rik@octave.org>
date Tue, 24 Aug 2021 16:11:23 -0700
parents e156fce82e00
children 0edbd0efb69d
files build-aux/mk-opts.pl
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/build-aux/mk-opts.pl	Tue Aug 24 15:58:29 2021 -0700
+++ b/build-aux/mk-opts.pl	Tue Aug 24 16:11:23 2021 -0700
@@ -151,7 +151,7 @@
           die "duplicate NAME" if defined $NAME[$OPT_NUM];
           $NAME[$OPT_NUM] = $1;
           ($OPT[$OPT_NUM] = $NAME[$OPT_NUM]) =~ s/\s+/_/g;
-          $OPTVAR[$OPT_NUM] = 'x_' . $OPT[$OPT_NUM];
+          $OPTVAR[$OPT_NUM] = 'm_' . $OPT[$OPT_NUM];
           $KW_TOK[$OPT_NUM] = [ split (' ', $NAME[$OPT_NUM]) ];
           $N_TOKS[$OPT_NUM] = @{$KW_TOK[$OPT_NUM]};
         }