From ec81a41e24dc10159271814cc43356dc1244d8dd Mon Sep 17 00:00:00 2001 From: "Steffen (Daode) Nurpmeso" Date: Wed, 28 Sep 2016 13:43:50 +0200 Subject: [PATCH] cmd_tab.h: allow history for `set', `setenv', `varshow' --- cmd_tab.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd_tab.h b/cmd_tab.h index 966f8998..ec459f4d 100644 --- a/cmd_tab.h +++ b/cmd_tab.h @@ -132,9 +132,9 @@ DS(N_("Read commands from ")) }, { "source_if", &c_source_if, (M | R | RAWLIST), 1, 1 DS(N_("If can be opened successfully, read commands from it")) }, - { "set", &c_set, (H | M | RAWLIST), 0, 1000 + { "set", &c_set, (M | RAWLIST), 0, 1000 DS(N_("Print all variables, or set (a) (s)")) }, - { "setenv", &c_setenv, (H | M | RAWLIST), 1, 1000 + { "setenv", &c_setenv, (M | RAWLIST), 1, 1000 DS(N_("Set (a) (s) and export into the program environment")) }, { "shell", &c_dosh, (I | NOLIST), 0, 0 DS(N_("Invoke an interactive shell")) }, @@ -372,7 +372,7 @@ DS(N_("Print current working directory (CWD)")) }, { "pwd", &c_cwd, (M | NOLIST), 0, 0 DS(N_("Print current working directory (CWD)")) }, - { "varshow", &c_varshow, (H | M | RAWLIST), 1, 1000 + { "varshow", &c_varshow, (M | RAWLIST), 1, 1000 DS(N_("Show some informations about the given ")) }, { "varedit", &c_varedit, (H | I | M | RAWLIST), 1, 1000 DS(N_("Edit the value(s) of (an) variable(s), or create them")) }, -- 2.11.4.GIT