From 55d7442abcd64f9ab385bfa9d009e075a7c6d2ce Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Mon, 10 Nov 2014 22:19:15 -0500 Subject: [PATCH] CLI - Restored message about nested alias safety valve. --- src/CLI.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/CLI.cpp b/src/CLI.cpp index b5146b61a..e93097d86 100644 --- a/src/CLI.cpp +++ b/src/CLI.cpp @@ -733,6 +733,9 @@ void CLI::aliasExpansion () } while (action && counter++ < safetyValveDefault); + if (counter >= safetyValveDefault) + context.debug (format (STRING_PARSER_ALIAS_NEST, safetyValveDefault)); + if (changes && context.config.getInteger ("debug.parser") >= 3) context.debug (context.cli.dump ("CLI::analyze aliasExpansion"));