[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Bash ini builtin implementation feedback
From: |
Jesse Hathaway |
Subject: |
Re: Bash ini builtin implementation feedback |
Date: |
Fri, 2 Jul 2021 09:11:41 -0500 |
On Thu, Jul 1, 2021 at 9:15 AM Jesse Hathaway <jesse@mbuki-mvuki.org> wrote:
>
> SHELL_VAR *sec_var = find_or_make_array_variable(sec_var_name, vflags);
> if (!sec_var) {
> builtin_error("Could not make %s", sec_var_name);
> free(sec_var_name);
> return 0;
> }
Chet, is there a way to make this a local variable if the builtin is called
inside of a function, similar to the way `declare` works?