summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/report.cc6
-rw-r--r--src/report.h2
2 files changed, 4 insertions, 4 deletions
diff --git a/src/report.cc b/src/report.cc
index 37bcb332..1c654e75 100644
--- a/src/report.cc
+++ b/src/report.cc
@@ -765,7 +765,7 @@ value_t report_t::fn_quoted(call_scope_t& args)
return string_value(out.str());
}
-value_t report_t::fn_quoted_rfc4180(call_scope_t& args)
+value_t report_t::fn_quoted_rfc(call_scope_t& args)
{
std::ostringstream out;
@@ -1498,8 +1498,8 @@ expr_t::ptr_op_t report_t::lookup(const symbol_t::kind_t kind,
case 'q':
if (is_eq(p, "quoted"))
return MAKE_FUNCTOR(report_t::fn_quoted);
- else if (is_eq(p, "quoted_rfc4180"))
- return MAKE_FUNCTOR(report_t::fn_quoted_rfc4180);
+ else if (is_eq(p, "quoted_rfc"))
+ return MAKE_FUNCTOR(report_t::fn_quoted_rfc);
else if (is_eq(p, "quantity"))
return MAKE_FUNCTOR(report_t::fn_quantity);
break;
diff --git a/src/report.h b/src/report.h
index 79be08ae..d264c777 100644
--- a/src/report.h
+++ b/src/report.h
@@ -182,7 +182,7 @@ public:
value_t fn_abs(call_scope_t& scope);
value_t fn_justify(call_scope_t& scope);
value_t fn_quoted(call_scope_t& scope);
- value_t fn_quoted_rfc4180(call_scope_t& scope);
+ value_t fn_quoted_rfc(call_scope_t& scope);
value_t fn_join(call_scope_t& scope);
value_t fn_format_date(call_scope_t& scope);
value_t fn_format_datetime(call_scope_t& scope);