mirror of
https://github.com/irssi/irssi.git
synced 2026-08-15 14:42:08 +02:00
add format_string_expand and format_string_unexpand methods to Perl
This commit is contained in:
parent
25ad30d5e4
commit
030da3ec9c
9 changed files with 226 additions and 6 deletions
|
|
@ -70,6 +70,15 @@ PPCODE:
|
|||
XPUSHs(sv_2mortal(new_pv(ret)));
|
||||
g_free(ret);
|
||||
|
||||
void
|
||||
format_string_unexpand(input)
|
||||
char *input
|
||||
PREINIT:
|
||||
char *ret;
|
||||
PPCODE:
|
||||
ret = format_string_unexpand(input, 0);
|
||||
XPUSHs(sv_2mortal(new_pv(ret)));
|
||||
g_free(ret);
|
||||
|
||||
void
|
||||
format_create_dest(target, level=MSGLEVEL_CLIENTNOTICE, window=NULL)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue