summaryrefslogtreecommitdiff
path: root/loadlib.c
diff options
context:
space:
mode:
Diffstat (limited to 'loadlib.c')
-rw-r--r--loadlib.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/loadlib.c b/loadlib.c
index 93bf0031..bbe7789a 100644
--- a/loadlib.c
+++ b/loadlib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: loadlib.c,v 1.23 2005/03/29 14:30:16 roberto Exp roberto $ 2** $Id: loadlib.c,v 1.24 2005/03/29 16:20:48 roberto Exp roberto $
3** Dynamic library loader for Lua 3** Dynamic library loader for Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5** 5**
@@ -213,8 +213,7 @@ static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym) {
213 213
214 214
215#if defined(__ELF__) || defined(__sun) || defined(sgi) || defined(__hpux) 215#if defined(__ELF__) || defined(__sun) || defined(sgi) || defined(__hpux)
216#define DLMSG "your system was not properly installed, " \ 216#define DLMSG "`loadlib' not enabled; check your Lua installation"
217 "so it cannot run `loadlib'; check your installation"
218#else 217#else
219#define DLMSG "`loadlib' not supported" 218#define DLMSG "`loadlib' not supported"
220#endif 219#endif