| 496 | |
| 497 | |
| 498 | static void lua_freeline (char *line) { |
| 499 | if (l_readline != NULL) /* is there a 'readline'? */ |
| 500 | free(line); /* free line created by it */ |
| 501 | /* else 'lua_readline' used an automatic buffer; nothing to free */ |
| 502 | } |
| 503 | |
| 504 | |
| 505 | #if defined(LUA_USE_DLOPEN) && defined(LUA_READLINELIB) /* { */ |