Changeset dfaa46d
- Timestamp:
- 2015-01-26T07:50:45Z (10 years ago)
- Branches:
- master
- Children:
- ce402b2
- Parents:
- 73ee390
- git-author:
- William Pettersson <william.pettersson@…> (26-01-15 07:37:14)
- git-committer:
- dequis <dx@…> (26-01-15 07:50:45)
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/user-guide/commands.xml
r73ee390 rdfaa46d 847 847 <varlistentry><term>rt <screenname|#id></term><listitem><para>Retweet someone's last Tweet (or one with the given ID)</para></listitem></varlistentry> 848 848 <varlistentry><term>reply <screenname|#id></term><listitem><para>Reply to a Tweet (with a reply-to reference)</para></listitem></varlistentry> 849 <varlistentry><term>rawreply <screenname|#id></term><listitem><para>Reply to a Tweet (with no reply-to reference)</para></listitem></varlistentry> 849 850 <varlistentry><term>report <screenname|#id></term><listitem><para>Report the given user (or the user who posted the tweet with the given ID) for sending spam. This will also block them.</para></listitem></varlistentry> 850 851 <varlistentry><term>follow <screenname></term><listitem><para>Start following a person</para></listitem></varlistentry> -
protocols/twitter/twitter.c
r73ee390 rdfaa46d 932 932 in_reply_to = id; 933 933 allow_post = TRUE; 934 } else if (g_strcasecmp(cmd[0], "rawreply") == 0 && cmd[1] && cmd[2]) { 935 id = twitter_message_id_from_command_arg(ic, cmd[1], NULL); 936 if (!id) { 937 twitter_log(ic, "Tweet `%s' does not exist", cmd[1]); 938 goto eof; 939 } 940 message = cmd[2]; 941 in_reply_to = id; 942 allow_post = TRUE; 934 943 } else if (g_strcasecmp(cmd[0], "post") == 0) { 935 944 message += 5;
Note: See TracChangeset
for help on using the changeset viewer.