info printer MAINTENANCE rename LYS_OUTPUT_NO_SUBST to LYS_OUTPUT_NO_SUBSTMT

Be consistent in naming.
diff --git a/src/printer_yang.c b/src/printer_yang.c
index 066b75c..9d30254 100755
--- a/src/printer_yang.c
+++ b/src/printer_yang.c
@@ -1185,7 +1185,7 @@
         yprc_must(ctx, &inout->musts[u], NULL);
     }
 
-    if (!(ctx->options & LYS_OUTPUT_NO_SUBST)) {
+    if (!(ctx->options & LYS_OUTPUT_NO_SUBSTMT)) {
         LY_LIST_FOR(inout->data, data) {
             yprc_node(ctx, data);
         }
@@ -1258,7 +1258,7 @@
     ypr_description(ctx, notif->dsc, notif->exts, &flag);
     ypr_reference(ctx, notif->ref, notif->exts, &flag);
 
-    if (!(ctx->options & LYS_OUTPUT_NO_SUBST)) {
+    if (!(ctx->options & LYS_OUTPUT_NO_SUBSTMT)) {
         LY_LIST_FOR(notif->data, data) {
             ypr_open(ctx->out, &flag);
             yprc_node(ctx, data);
@@ -1445,7 +1445,7 @@
 
     yprc_node_common2(ctx, node, &flag);
 
-    if (!(ctx->options & LYS_OUTPUT_NO_SUBST)) {
+    if (!(ctx->options & LYS_OUTPUT_NO_SUBSTMT)) {
         LY_LIST_FOR(cont->child, child) {
             ypr_open(ctx->out, &flag);
             yprc_node(ctx, child);
@@ -1494,7 +1494,7 @@
     yprc_node_common1(ctx, (struct lysc_node*)cs, &flag);
     yprc_node_common2(ctx, (struct lysc_node*)cs, &flag);
 
-    if (!(ctx->options & LYS_OUTPUT_NO_SUBST)) {
+    if (!(ctx->options & LYS_OUTPUT_NO_SUBSTMT)) {
         for (child = cs->child; child && child->parent == (struct lysc_node*)cs; child = child->next) {
             ypr_open(ctx->out, &flag);
             yprc_node(ctx, child);
@@ -1795,7 +1795,7 @@
     ypr_description(ctx, node->dsc, node->exts, NULL);
     ypr_reference(ctx, node->ref, node->exts, NULL);
 
-    if (!(ctx->options & LYS_OUTPUT_NO_SUBST)) {
+    if (!(ctx->options & LYS_OUTPUT_NO_SUBSTMT)) {
         LY_LIST_FOR(list->child, child) {
             ypr_open(ctx->out, &flag);
             yprc_node(ctx, child);
@@ -2376,7 +2376,7 @@
         yprc_identity(ctx, &modc->identities[u]);
     }
 
-    if (!(ctx->options & LYS_OUTPUT_NO_SUBST)) {
+    if (!(ctx->options & LYS_OUTPUT_NO_SUBSTMT)) {
         LY_LIST_FOR(modc->data, data) {
             yprc_node(ctx, data);
         }