history_ptr 97 src/help.c static int history_ptr = 0; // For the history queue history_ptr 676 src/help.c history_ptr = (history_ptr + 1) % HISTORY_SIZE; history_ptr 677 src/help.c history[history_ptr].page = currentpoint; history_ptr 678 src/help.c history[history_ptr].link = selected_item; history_ptr 702 src/help.c history_ptr = (history_ptr + 1) % HISTORY_SIZE; history_ptr 703 src/help.c history[history_ptr].page = currentpoint; history_ptr 704 src/help.c history[history_ptr].link = selected_item; history_ptr 717 src/help.c currentpoint = history[history_ptr].page; history_ptr 718 src/help.c selected_item = history[history_ptr].link; history_ptr 719 src/help.c history_ptr--; history_ptr 720 src/help.c if (history_ptr < 0) history_ptr 721 src/help.c history_ptr = HISTORY_SIZE - 1; history_ptr 825 src/help.c history_ptr--; history_ptr 826 src/help.c if (history_ptr < 0) history_ptr 827 src/help.c history_ptr = HISTORY_SIZE - 1; history_ptr 829 src/help.c currentpoint = history[history_ptr].page; history_ptr 830 src/help.c selected_item = history[history_ptr].link; history_ptr 835 src/help.c history_ptr = (history_ptr + 1) % HISTORY_SIZE; history_ptr 836 src/help.c history[history_ptr].page = currentpoint; history_ptr 837 src/help.c history[history_ptr].link = selected_item; history_ptr 1093 src/help.c history_ptr = (history_ptr + 1) % HISTORY_SIZE; history_ptr 1094 src/help.c history[history_ptr].page = currentpoint; history_ptr 1095 src/help.c history[history_ptr].link = la->link_name;