history_ptr 97 src/help.c static int history_ptr = 0; // For the history queue history_ptr 665 src/help.c history_ptr = (history_ptr + 1) % HISTORY_SIZE; history_ptr 666 src/help.c history[history_ptr].page = currentpoint; history_ptr 667 src/help.c history[history_ptr].link = selected_item; history_ptr 691 src/help.c history_ptr = (history_ptr + 1) % HISTORY_SIZE; history_ptr 692 src/help.c history[history_ptr].page = currentpoint; history_ptr 693 src/help.c history[history_ptr].link = selected_item; history_ptr 706 src/help.c currentpoint = history[history_ptr].page; history_ptr 707 src/help.c selected_item = history[history_ptr].link; history_ptr 708 src/help.c history_ptr--; history_ptr 709 src/help.c if (history_ptr < 0) history_ptr 710 src/help.c history_ptr = HISTORY_SIZE - 1; history_ptr 814 src/help.c history_ptr--; history_ptr 815 src/help.c if (history_ptr < 0) history_ptr 816 src/help.c history_ptr = HISTORY_SIZE - 1; history_ptr 818 src/help.c currentpoint = history[history_ptr].page; history_ptr 819 src/help.c selected_item = history[history_ptr].link; history_ptr 824 src/help.c history_ptr = (history_ptr + 1) % HISTORY_SIZE; history_ptr 825 src/help.c history[history_ptr].page = currentpoint; history_ptr 826 src/help.c history[history_ptr].link = selected_item; history_ptr 1082 src/help.c history_ptr = (history_ptr + 1) % HISTORY_SIZE; history_ptr 1083 src/help.c history[history_ptr].page = currentpoint; history_ptr 1084 src/help.c history[history_ptr].link = la->link_name;