history_ptr        99 src/help.c     static int history_ptr;         /* For the history queue */
history_ptr       619 src/help.c         history_ptr = (history_ptr + 1) % HISTORY_SIZE;
history_ptr       620 src/help.c         history[history_ptr].page = currentpoint;
history_ptr       621 src/help.c         history[history_ptr].link = selected_item;
history_ptr       645 src/help.c             history_ptr = (history_ptr + 1) % HISTORY_SIZE;
history_ptr       646 src/help.c             history[history_ptr].page = currentpoint;
history_ptr       647 src/help.c             history[history_ptr].link = selected_item;
history_ptr       660 src/help.c         currentpoint = history[history_ptr].page;
history_ptr       661 src/help.c         selected_item = history[history_ptr].link;
history_ptr       662 src/help.c         history_ptr--;
history_ptr       663 src/help.c         if (history_ptr < 0)
history_ptr       664 src/help.c             history_ptr = HISTORY_SIZE - 1;
history_ptr       768 src/help.c             history_ptr--;
history_ptr       769 src/help.c             if (history_ptr < 0)
history_ptr       770 src/help.c                 history_ptr = HISTORY_SIZE - 1;
history_ptr       772 src/help.c             currentpoint = history[history_ptr].page;
history_ptr       773 src/help.c             selected_item = history[history_ptr].link;
history_ptr       778 src/help.c             history_ptr = (history_ptr + 1) % HISTORY_SIZE;
history_ptr       779 src/help.c             history[history_ptr].page = currentpoint;
history_ptr       780 src/help.c             history[history_ptr].link = selected_item;
history_ptr      1036 src/help.c             history_ptr = (history_ptr + 1) % HISTORY_SIZE;
history_ptr      1037 src/help.c             history[history_ptr].page = currentpoint;
history_ptr      1038 src/help.c             history[history_ptr].link = la->link_name;
history_ptr      1153 src/help.c         for (history_ptr = HISTORY_SIZE - 1; history_ptr >= 0; history_ptr--)
history_ptr      1155 src/help.c             history[history_ptr].page = currentpoint;
history_ptr      1156 src/help.c             history[history_ptr].link = selected_item;