1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-10-01 03:36:26 -04:00

Merge with git+ssh://pasky.or.cz/srv/git/elinks.git

This commit is contained in:
Jonas Fonseca 2006-02-10 22:19:16 +01:00 committed by Jonas Fonseca
commit 08b3d997b2
2 changed files with 2 additions and 2 deletions

View File

@ -149,7 +149,7 @@ get_event_name(int id)
return events[id].name;
}
static inline void
static void
trigger_event_va(int id, va_list ap_init)
{
int i;

View File

@ -160,7 +160,7 @@ script_hook_pre_format_html(va_list ap, void *data)
args[0] = rb_str_new2(url);
/* FIXME: Use html_len */
args[1] = rb_str_new(fragment->data, fragment->length);
args[1] = rb_str_new2(fragment->data);
result = erb_protected_method_call("pre_format_html_hook", 2, args, &error);
if (error) {