From 0bfb44f590402137bfcf8e65c54638908d5ed6d2 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Sun, 23 Nov 2014 20:21:14 +0100 Subject: [PATCH] jshn: shorten JSON_VAR to J_V Signed-off-by: Felix Fietkau --- jshn.c | 2 +- sh/jshn.sh | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/jshn.c b/jshn.c index cd9d402..431e1b3 100644 --- a/jshn.c +++ b/jshn.c @@ -260,7 +260,7 @@ static int jshn_format(bool no_newline, bool indent) const char *output; obj = json_object_new_object(); - jshn_add_objects(obj, "JSON_VAR", false); + jshn_add_objects(obj, "J_V", false); output = json_object_to_json_string(obj); if (indent) { blob_buf_init(&b, 0); diff --git a/sh/jshn.sh b/sh/jshn.sh index dab40e4..6bf4be2 100644 --- a/sh/jshn.sh +++ b/sh/jshn.sh @@ -105,7 +105,7 @@ json_cleanup() { local unset tmp _json_get_var unset JSON_UNSET - for tmp in $unset JSON_VAR; do + for tmp in $unset J_V; do unset \ ${JSON_PREFIX}U_$tmp \ ${JSON_PREFIX}K_$tmp \ @@ -125,8 +125,8 @@ json_init() { json_cleanup export -n ${JSON_PREFIX}JSON_SEQ=0 export -- \ - ${JSON_PREFIX}JSON_CUR="JSON_VAR" \ - ${JSON_PREFIX}K_JSON_VAR= + ${JSON_PREFIX}JSON_CUR="J_V" \ + ${JSON_PREFIX}K_J_V= } json_add_object() { @@ -250,7 +250,7 @@ json_select() { local cur [ -z "$1" ] && { - _json_set_var JSON_CUR "JSON_VAR" + _json_set_var JSON_CUR "J_V" return 0 } [[ "$1" == ".." ]] && { -- 2.30.2