summaryrefslogtreecommitdiff
path: root/docs/perl.txt
diff options
context:
space:
mode:
authorJilles Tjoelker <jilles@irssi.org>2007-08-04 14:42:22 +0000
committerjilles <jilles@dbcabf3a-b0e7-0310-adc4-f8d773084564>2007-08-04 14:42:22 +0000
commit834ee1fe66495aa82016ed7cabea450b7a3257c4 (patch)
treea6c1deb29ee5dd86120a3fdabf2c9138d028f4cb /docs/perl.txt
parent3d1753b0807808595213ddce12f6c5107e667915 (diff)
downloadirssi-834ee1fe66495aa82016ed7cabea450b7a3257c4.zip
Move docs for /exec processes out of the IRC-specific section.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4593 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'docs/perl.txt')
-rw-r--r--docs/perl.txt32
1 files changed, 16 insertions, 16 deletions
diff --git a/docs/perl.txt b/docs/perl.txt
index 611af9fb..ff55a31e 100644
--- a/docs/perl.txt
+++ b/docs/perl.txt
@@ -909,6 +909,22 @@ Server::ignore_check(nick, host, channel, text, level)
Return 1 if ignoring matched.
+ *** /EXEC processes
+
+Process->{}
+ id - ID for the process
+ name - Name for the process (if given)
+ args - The command that is being executed
+
+ pid - PID for the executed command
+ target - send text with /msg <target> ...
+ target_win - print text to this window
+
+ shell - start the program via /bin/sh
+ notice - send text with /notice, not /msg if target is set
+ silent - don't print "process exited with level xx"
+
+
***
*** IRC specific functions. All objects below this are prefixed with Irc::
***
@@ -1117,19 +1133,3 @@ Server::notifylist_ison_server(nick)
Notifylist::ircnets_match(ircnet)
Returns 1 if notify is checked in `ircnet'.
-
-
- *** /EXEC processes
-
-Process->{}
- id - ID for the process
- name - Name for the process (if given)
- args - The command that is being executed
-
- pid - PID for the executed command
- target - send text with /msg <target> ...
- target_win - print text to this window
-
- shell - start the program via /bin/sh
- notice - send text with /notice, not /msg if target is set
- silent - don't print "process exited with level xx"