about summary refs log tree commit diff stats
path: root/edit/003-shortcuts.mu
Commit message (Expand)AuthorAgeFilesLines
...
* 2622 - bugfix: left-arrowKartik K. Agaram2016-01-311-3/+78
* 2576 - distinguish allocated addresses from othersKartik K. Agaram2016-01-191-405/+405
* 2548 - teach 'print' to print integersKartik K. Agaram2015-12-281-2/+4
* layer 3 of edit/ now workingKartik K. Agaram2015-12-151-6/+8
* 2468 - overload print-character as just 'print'Kartik K. Agaram2015-11-211-4/+4
* 2446 - drop '-duplex' namespacing in recipesKartik K. Agaram2015-11-151-30/+30
* 2422 - a bugfix from the last lessonKartik K. Agaram2015-11-101-1/+59
* 2397Kartik K. Agaram2015-11-081-1/+1
* 2371 - layer 5 of editKartik K. Agaram2015-11-051-6/+4
* 2370 - layers 1-4 of edit are backKartik K. Agaram2015-11-051-219/+229
* 2309Kartik K. Agaram2015-10-281-168/+168
* 2179 - undo bugfixKartik K. Agaram2015-09-101-1/+1
* 2156 - split edit.mu into multiple filesKartik K. Agaram2015-09-051-0/+3069
-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
void cmd_roster_shows_message_when_disconnecting(void **state);
void cmd_roster_shows_message_when_connecting(void **state);
void cmd_roster_shows_message_when_disconnected(void **state);
void cmd_roster_shows_message_when_undefined(void **state);
void cmd_roster_shows_roster_when_no_args(void **state);
void cmd_roster_add_shows_message_when_no_jid(void **state);
void cmd_roster_add_sends_roster_add_request(void **state);
void cmd_roster_remove_shows_message_when_no_jid(void **state);
void cmd_roster_remove_sends_roster_remove_request(void **state);
void cmd_roster_nick_shows_message_when_no_jid(void **state);
void cmd_roster_nick_shows_message_when_no_nick(void **state);
void cmd_roster_nick_shows_message_when_no_contact_exists(void **state);
void cmd_roster_nick_sends_name_change_request(void **state);
void cmd_roster_clearnick_shows_message_when_no_jid(void **state);
void cmd_roster_clearnick_shows_message_when_no_contact_exists(void **state);
void cmd_roster_clearnick_sends_name_change_request_with_empty_nick(void **state);