mirror of
https://github.com/rkd77/elinks.git
synced 2025-01-03 14:57:44 -05:00
[lua] const in alert_lua_error
This commit is contained in:
parent
0d2cbb8847
commit
e44f1f6490
@ -790,7 +790,7 @@ finish_lua(void)
|
|||||||
/* Error reporting. */
|
/* Error reporting. */
|
||||||
|
|
||||||
void
|
void
|
||||||
alert_lua_error(char *msg)
|
alert_lua_error(const char *msg)
|
||||||
{
|
{
|
||||||
if (errterm) {
|
if (errterm) {
|
||||||
info_box(errterm, MSGBOX_NO_TEXT_INTL | MSGBOX_FREE_TEXT,
|
info_box(errterm, MSGBOX_NO_TEXT_INTL | MSGBOX_FREE_TEXT,
|
||||||
@ -804,7 +804,7 @@ alert_lua_error(char *msg)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
alert_lua_error2(char *msg, char *msg2)
|
alert_lua_error2(const char *msg, char *msg2)
|
||||||
{
|
{
|
||||||
char *tmp = stracpy(msg);
|
char *tmp = stracpy(msg);
|
||||||
|
|
||||||
|
@ -22,8 +22,8 @@ extern lua_State *lua_state;
|
|||||||
int prepare_lua(struct session *);
|
int prepare_lua(struct session *);
|
||||||
void finish_lua(void);
|
void finish_lua(void);
|
||||||
|
|
||||||
void alert_lua_error(char *);
|
void alert_lua_error(const char *);
|
||||||
void alert_lua_error2(char *, char *);
|
void alert_lua_error2(const char *, char *);
|
||||||
|
|
||||||
enum evhook_status dialog_lua_console(va_list ap, void *data);
|
enum evhook_status dialog_lua_console(va_list ap, void *data);
|
||||||
enum evhook_status free_lua_console_history(va_list ap, void *data);
|
enum evhook_status free_lua_console_history(va_list ap, void *data);
|
||||||
|
Loading…
Reference in New Issue
Block a user