diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2019-05-05 20:33:27 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2019-05-05 20:33:27 +0300 |
commit | 2a1cc6b172b589d64166c2350d85f512c648a2ca (patch) | |
tree | b928ea224051cc4a2ae8f82a686afce30f1f49b0 | |
parent | 323aec85713a8eb95290c3af806eb611c5d61798 (diff) | |
download | egawk-2a1cc6b172b589d64166c2350d85f512c648a2ca.tar.gz egawk-2a1cc6b172b589d64166c2350d85f512c648a2ca.tar.bz2 egawk-2a1cc6b172b589d64166c2350d85f512c648a2ca.zip |
Fix message for when extensions are not available.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ext.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -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 @@ -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 |