summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.am20
-rw-r--r--op.cc4
2 files changed, 12 insertions, 12 deletions
diff --git a/Makefile.am b/Makefile.am
index e1aaa45c..9149847c 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -14,12 +14,18 @@ lib_LTLIBRARIES = libamounts.la libledger.la
libamounts_la_CPPFLAGS =
libamounts_la_SOURCES = \
+ utils.cc \
+ times.cc \
+ mask.cc \
amount.cc \
commodity.cc \
balance.cc \
value.cc \
- times.cc \
- utils.cc
+ token.cc \
+ parser.cc \
+ op.cc \
+ expr.cc \
+ scope.cc
if HAVE_EXPAT
libamounts_la_CPPFLAGS += -DHAVE_EXPAT=1
endif
@@ -38,12 +44,6 @@ endif
libledger_la_CPPFLAGS = $(libamounts_la_CPPFLAGS)
libledger_la_SOURCES = \
- mask.cc \
- token.cc \
- parser.cc \
- op.cc \
- expr.cc \
- scope.cc \
format.cc \
\
journal.cc \
@@ -81,8 +81,9 @@ pkginclude_HEADERS = \
balance.h \
balpair.h \
value.h \
- times.h \
utils.h \
+ times.h \
+ mask.h \
error.h \
\
expr.h \
@@ -92,7 +93,6 @@ pkginclude_HEADERS = \
scope.h \
predicate.h \
format.h \
- mask.h \
\
journal.h \
report.h \
diff --git a/op.cc b/op.cc
index abb91915..618a4e43 100644
--- a/op.cc
+++ b/op.cc
@@ -702,12 +702,12 @@ value_t expr_t::op_t::calc(scope_t& scope)
ptr_op_t def = func->compile(scope);
if (def == func)
throw_(calc_error,
- "Attempt to call unknown function '" << name << "'");
+ "Calling unknown function '" << name << "'");
func = def;
}
if (func->kind != FUNCTION)
- throw_(calc_error, "Attempt to call non-function");
+ throw_(calc_error, "Calling non-function");
return func->as_function()(call_args);
}