@@ -3743,7 +3743,7 @@ subroutine json_add_string_by_path_path_ascii(json,me,path,value,found,&
3743
3743
logical (LK),intent (in ),optional :: trim_str ! ! if TRIM() should be called for each element
3744
3744
logical (LK),intent (in ),optional :: adjustl_str ! ! if ADJUSTL() should be called for each element
3745
3745
3746
- call json% json_add_string_by_path(me,to_unicode(path),value,found,was_created)
3746
+ call json% json_add_string_by_path(me,to_unicode(path),value,found,was_created,trim_str,adjustl_str )
3747
3747
3748
3748
end subroutine json_add_string_by_path_path_ascii
3749
3749
! *****************************************************************************************
@@ -3766,7 +3766,7 @@ subroutine json_add_string_by_path_value_ascii(json,me,path,value,found,&
3766
3766
logical (LK),intent (in ),optional :: trim_str ! ! if TRIM() should be called for each element
3767
3767
logical (LK),intent (in ),optional :: adjustl_str ! ! if ADJUSTL() should be called for each element
3768
3768
3769
- call json% json_add_string_by_path(me,path,to_unicode(value),found,was_created)
3769
+ call json% json_add_string_by_path(me,path,to_unicode(value),found,was_created,trim_str,adjustl_str )
3770
3770
3771
3771
end subroutine json_add_string_by_path_value_ascii
3772
3772
! *****************************************************************************************
@@ -4133,7 +4133,7 @@ subroutine json_add_string_vec_by_path_path_ascii(json,me,path,value,&
4133
4133
logical (LK),intent (in ),optional :: adjustl_str ! ! if ADJUSTL() should be called for each element
4134
4134
4135
4135
call json% json_add_string_vec_by_path(me,to_unicode(path),value,&
4136
- found,was_created,ilen)
4136
+ found,was_created,ilen,trim_str,adjustl_str )
4137
4137
4138
4138
end subroutine json_add_string_vec_by_path_path_ascii
4139
4139
! *****************************************************************************************
0 commit comments