mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 12:23:37 +02:00
Moved Irssi::command(), Irssi::Server::command() and Irssi::Windowitem::command() from ui to core. Also, Irssi::command() now doesn't default to active server/window item, if this breaks any scripts change them use Irssi::active_win()->command() instead.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2232 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
1d340a9660
commit
eb91b126ec
2 changed files with 22 additions and 20 deletions
|
|
@ -34,12 +34,6 @@ print(str, level=MSGLEVEL_CLIENTNOTICE)
|
|||
CODE:
|
||||
printtext_string(NULL, NULL, level, str);
|
||||
|
||||
void
|
||||
command(cmd)
|
||||
char *cmd
|
||||
CODE:
|
||||
perl_command(cmd, active_win->active_server, active_win->active);
|
||||
|
||||
Irssi::UI::Window
|
||||
window_find_name(name)
|
||||
char *name
|
||||
|
|
@ -99,13 +93,6 @@ OUTPUT:
|
|||
MODULE = Irssi::UI::Window PACKAGE = Irssi::Server
|
||||
#*******************************
|
||||
|
||||
void
|
||||
command(server, cmd)
|
||||
Irssi::Server server
|
||||
char *cmd
|
||||
CODE:
|
||||
perl_command(cmd, server, NULL);
|
||||
|
||||
void
|
||||
print(server, channel, str, level=MSGLEVEL_CLIENTNOTICE)
|
||||
Irssi::Server server
|
||||
|
|
@ -249,13 +236,6 @@ print(item, str, level=MSGLEVEL_CLIENTNOTICE)
|
|||
CODE:
|
||||
printtext_string(item->server, item->name, level, str);
|
||||
|
||||
void
|
||||
command(item, cmd)
|
||||
Irssi::Windowitem item
|
||||
char *cmd
|
||||
CODE:
|
||||
perl_command(cmd, item->server, item);
|
||||
|
||||
Irssi::UI::Window
|
||||
window_create(item, automatic)
|
||||
Irssi::Windowitem item
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue