history_ptr        97 src/help.c     static int history_ptr = 0;            // For the history queue
history_ptr       617 src/help.c         history_ptr = (history_ptr + 1) % HISTORY_SIZE;
history_ptr       618 src/help.c         history[history_ptr].page = currentpoint;
history_ptr       619 src/help.c         history[history_ptr].link = selected_item;
history_ptr       643 src/help.c             history_ptr = (history_ptr + 1) % HISTORY_SIZE;
history_ptr       644 src/help.c             history[history_ptr].page = currentpoint;
history_ptr       645 src/help.c             history[history_ptr].link = selected_item;
history_ptr       658 src/help.c         currentpoint = history[history_ptr].page;
history_ptr       659 src/help.c         selected_item = history[history_ptr].link;
history_ptr       660 src/help.c         history_ptr--;
history_ptr       661 src/help.c         if (history_ptr < 0)
history_ptr       662 src/help.c             history_ptr = HISTORY_SIZE - 1;
history_ptr       766 src/help.c             history_ptr--;
history_ptr       767 src/help.c             if (history_ptr < 0)
history_ptr       768 src/help.c                 history_ptr = HISTORY_SIZE - 1;
history_ptr       770 src/help.c             currentpoint = history[history_ptr].page;
history_ptr       771 src/help.c             selected_item = history[history_ptr].link;
history_ptr       776 src/help.c             history_ptr = (history_ptr + 1) % HISTORY_SIZE;
history_ptr       777 src/help.c             history[history_ptr].page = currentpoint;
history_ptr       778 src/help.c             history[history_ptr].link = selected_item;
history_ptr      1034 src/help.c             history_ptr = (history_ptr + 1) % HISTORY_SIZE;
history_ptr      1035 src/help.c             history[history_ptr].page = currentpoint;
history_ptr      1036 src/help.c             history[history_ptr].link = la->link_name;