Home
last modified time | relevance | path

Searched refs:last_mesg (Results 1 – 10 of 10) sorted by relevance

/dports/games/vultures-eye/vulture-2.3.67/unnethack/win/curses/
H A Dcursmesg.c28 static nhprev_mesg *last_mesg = NULL; variable
430 if (last_mesg != NULL) in mesg_add_line()
432 last_mesg->next_mesg = current_mesg; in mesg_add_line()
434 current_mesg->prev_mesg = last_mesg; in mesg_add_line()
435 last_mesg = current_mesg; in mesg_add_line()
460 current_mesg = last_mesg; in get_msg_line()
/dports/games/xnethack/xNetHack-xnh6.1/win/curses/
H A Dcursmesg.c46 static nhprev_mesg *last_mesg = NULL; variable
360 last_mesg = (nhprev_mesg *) 0; in curses_teardown_messages()
800 last_mesg->next_mesg = current_mesg; in mesg_add_line()
802 current_mesg->prev_mesg = last_mesg; in mesg_add_line()
803 last_mesg = current_mesg; /* new tail */ in mesg_add_line()
815 last_mesg->next_mesg = NULL; /* tail has no next_mesg */ in mesg_add_line()
828 current_mesg = last_mesg; in get_msg_line()
907 last_mesg = (nhprev_mesg *) 0; /* no need to remember the tail */ in curses_putmsghistory()
918 last_mesg->turn = 1L; in curses_putmsghistory()
920 dumplogmsg(last_mesg->str); in curses_putmsghistory()
[all …]
/dports/games/nethack36/NetHack-NetHack-3.6.6_Released/win/curses/
H A Dcursmesg.c46 static nhprev_mesg *last_mesg = NULL; variable
352 last_mesg = (nhprev_mesg *) 0; in curses_teardown_messages()
790 last_mesg->next_mesg = current_mesg; in mesg_add_line()
792 current_mesg->prev_mesg = last_mesg; in mesg_add_line()
793 last_mesg = current_mesg; /* new tail */ in mesg_add_line()
805 last_mesg->next_mesg = NULL; /* tail has no next_mesg */ in mesg_add_line()
818 current_mesg = last_mesg; in get_msg_line()
900 last_mesg = (nhprev_mesg *) 0; /* no need to remember the tail */
911 last_mesg->turn = 1L;
913 dumplogmsg(last_mesg->str);
[all …]
/dports/games/nethack36-nox11/NetHack-NetHack-3.6.6_Released/win/curses/
H A Dcursmesg.c46 static nhprev_mesg *last_mesg = NULL; variable
352 last_mesg = (nhprev_mesg *) 0; in curses_teardown_messages()
790 last_mesg->next_mesg = current_mesg; in mesg_add_line()
792 current_mesg->prev_mesg = last_mesg; in mesg_add_line()
793 last_mesg = current_mesg; /* new tail */ in mesg_add_line()
805 last_mesg->next_mesg = NULL; /* tail has no next_mesg */ in mesg_add_line()
818 current_mesg = last_mesg; in get_msg_line()
900 last_mesg = (nhprev_mesg *) 0; /* no need to remember the tail */
911 last_mesg->turn = 1L;
913 dumplogmsg(last_mesg->str);
[all …]
/dports/games/unnethack/unnethack-5.1.0-20131208/win/curses/
H A Dcursmesg.c28 static nhprev_mesg *last_mesg = NULL; variable
430 if (last_mesg != NULL) in mesg_add_line()
432 last_mesg->next_mesg = current_mesg; in mesg_add_line()
434 current_mesg->prev_mesg = last_mesg; in mesg_add_line()
435 last_mesg = current_mesg; in mesg_add_line()
460 current_mesg = last_mesg; in get_msg_line()
/dports/net-im/purple-slack/slack-libpurple-f851698/
H A Dslack-object.c18 g_free(obj->last_mesg); in slack_object_finalize()
H A Dslack-conversation.c131 if (slack_ts_cmp(obj->last_mesg, obj->last_mark) <= 0) in slack_mark_conversation()
134 obj->last_read = g_strdup(obj->last_mesg); in slack_mark_conversation()
H A Dslack-object.h47 char *last_mesg, *last_read, *last_mark, *last_sent; /* ts marking */ member
H A Dslack-message.c474 if (slack_ts_cmp(tss, obj->last_mesg) > 0) { in slack_handle_message()
475 g_free(obj->last_mesg); in slack_handle_message()
476 obj->last_mesg = g_strdup(tss); in slack_handle_message()
H A Dslack-channel.c312 if (slack_ts_cmp(tss, send->chan->object.last_mesg) != 0) { in send_chat_cb()