aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2019-05-05 20:33:27 +0300
committerArnold D. Robbins <arnold@skeeve.com>2019-05-05 20:33:27 +0300
commit2a1cc6b172b589d64166c2350d85f512c648a2ca (patch)
treeb928ea224051cc4a2ae8f82a686afce30f1f49b0
parent323aec85713a8eb95290c3af806eb611c5d61798 (diff)
downloadegawk-2a1cc6b172b589d64166c2350d85f512c648a2ca.tar.gz
egawk-2a1cc6b172b589d64166c2350d85f512c648a2ca.tar.bz2
egawk-2a1cc6b172b589d64166c2350d85f512c648a2ca.zip
Fix message for when extensions are not available.
-rw-r--r--ChangeLog5
-rw-r--r--ext.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 79d77624..51f9a336 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2019-05-05 Arnold D. Robbins <arnold@skeeve.com>
+
+ * ext.c (load_ext): Fix the message in the version for when
+ extensions are not available.
+
2019-04-24 Arnold D. Robbins <arnold@skeeve.com>
* msg.c (msg): Use %ld for the line number value. Thanks to
diff --git a/ext.c b/ext.c
index c0ecd6bf..d0e97b87 100644
--- a/ext.c
+++ b/ext.c
@@ -229,7 +229,7 @@ get_actual_argument(NODE *t, int i, bool want_array)
void
load_ext(const char *lib_name)
{
- fatal(_("dynamic loading of library not supported"));
+ fatal(_("dynamic loading of libraries is not supported"));
}
#endif