home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / octave-1.1.1p1-src.tgz / tar.out / fsf / octave / info / session.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  108KB  |  4,204 lines

  1. /* session.c -- The user windowing interface to Info. */
  2.  
  3. /* This file is part of GNU Info, a program for reading online documentation
  4.    stored in Info format.
  5.  
  6.    Copyright (C) 1993 Free Software Foundation, Inc.
  7.  
  8.    This program is free software; you can redistribute it and/or modify
  9.    it under the terms of the GNU General Public License as published by
  10.    the Free Software Foundation; either version 2, or (at your option)
  11.    any later version.
  12.  
  13.    This program is distributed in the hope that it will be useful,
  14.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.    GNU General Public License for more details.
  17.  
  18.    You should have received a copy of the GNU General Public License
  19.    along with this program; if not, write to the Free Software
  20.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  
  22.    Written by Brian Fox (bfox@ai.mit.edu). */
  23.  
  24. #include "info.h"
  25. #include <sys/file.h>
  26. #include <sys/ioctl.h>
  27. #include <fcntl.h>
  28.  
  29. #if defined (HAVE_SYS_TIME_H)
  30. #  include <sys/time.h>
  31. #  define HAVE_STRUCT_TIMEVAL
  32. #endif /* HAVE_SYS_TIME_H */
  33.  
  34. static void info_clear_pending_input (), info_set_pending_input ();
  35. static void info_handle_pointer ();
  36.  
  37. /* **************************************************************** */
  38. /*                                    */
  39. /*             Running an Info Session                */
  40. /*                                    */
  41. /* **************************************************************** */
  42.  
  43. /* The place that we are reading input from. */
  44. static FILE *info_input_stream = (FILE *)NULL;
  45.  
  46. /* The last executed command. */
  47. VFunction *info_last_executed_command = (VFunction *)NULL;
  48.  
  49. /* Becomes non-zero when 'q' is typed to an Info window. */
  50. int quit_info_immediately = 0;
  51.  
  52. /* Array of structures describing for each window which nodes have been
  53.    visited in that window. */
  54. INFO_WINDOW **info_windows = (INFO_WINDOW **)NULL;
  55.  
  56. /* Where to add the next window, if we need to add one. */
  57. static int info_windows_index = 0;
  58.  
  59. /* Number of slots allocated to INFO_WINDOWS. */
  60. static int info_windows_slots = 0;
  61.  
  62. void remember_window_and_node (), forget_window_and_nodes ();
  63. void display_startup_message_and_start (), info_session ();
  64. void finish_info_session ();
  65. int initialize_info_session ();
  66.  
  67. /* Begin an info session finding the nodes specified by FILENAME and NODENAMES.
  68.    For each loaded node, create a new window.  Always split the largest of the
  69.    available windows. */
  70. void
  71. begin_multiple_window_info_session (filename, nodenames)
  72.      char *filename;
  73.      char **nodenames;
  74. {
  75.   register int i;
  76.   WINDOW *window = (WINDOW *)NULL;
  77.  
  78.   for (i = 0; nodenames[i]; i++)
  79.     {
  80.       NODE *node;
  81.  
  82.       node = info_get_node (filename, nodenames[i]);
  83.  
  84.       if (!node)
  85.     break;
  86.  
  87.       /* If this is the first node, initialize the info session. */
  88.       if (!window)
  89.     {
  90.       initialize_info_session (node, 1);
  91.       window = active_window;
  92.     }
  93.       else
  94.     {
  95.       /* Find the largest window in WINDOWS, and make that be the active
  96.          one.  Then split it and add our window and node to the list
  97.          of remembered windows and nodes.  Then tile the windows. */
  98.       register WINDOW *win, *largest = (WINDOW *)NULL;
  99.       int max_height = 0;
  100.  
  101.       for (win = windows; win; win = win->next)
  102.         if (win->height > max_height)
  103.           {
  104.         max_height = win->height;
  105.         largest = win;
  106.           }
  107.  
  108.       if (!largest)
  109.         {
  110.           display_update_display (windows);
  111.           info_error (CANT_FIND_WIND);
  112.           info_session ();
  113.           exit (0);
  114.         }
  115.  
  116.       active_window = largest;
  117.       window = window_make_window (node);
  118.       if (window)
  119.         {
  120.           window_tile_windows (TILE_INTERNALS);
  121.           remember_window_and_node (window, node);
  122.         }
  123.       else
  124.         {
  125.           display_update_display (windows);
  126.           info_error (WIN_TOO_SMALL);
  127.           info_session ();
  128.           exit (0);
  129.         }
  130.     }
  131.     }
  132.   display_startup_message_and_start ();
  133. }
  134.  
  135. /* Start an info session with INITIAL_NODE, and an error message in the echo
  136.    area made from FORMAT and ARG. */
  137. void
  138. begin_info_session_with_error (initial_node, format, arg)
  139.      NODE *initial_node;
  140.      char *format;
  141.      void *arg;
  142. {
  143.   initialize_info_session (initial_node, 1);
  144.   info_error (format, arg, (void *)NULL);
  145.   info_session ();
  146. }
  147.  
  148. /* Start an info session with INITIAL_NODE. */
  149. void
  150. begin_info_session (initial_node)
  151.      NODE *initial_node;
  152. {
  153.   initialize_info_session (initial_node, 1);
  154.   display_startup_message_and_start ();
  155. }
  156.  
  157. void
  158. finish_info_session ()
  159. {
  160.   close_dribble_file ();
  161.   clear_info_signal_handler ();
  162. }
  163.  
  164. void
  165. display_startup_message_and_start ()
  166. {
  167.   char *format;
  168.  
  169.   format = replace_in_documentation
  170.     ("Welcome to Info version %s.  Type \"\\[get-help-window]\" for help.");
  171.  
  172.   window_message_in_echo_area (format, version_string ());
  173.   info_session ();
  174. }
  175.  
  176. /* Run an info session with an already initialized window and node. */
  177. void
  178. info_session ()
  179. {
  180.   terminal_prep_terminal ();
  181.   display_update_display (windows);
  182.   info_last_executed_command = (VFunction *)NULL;
  183.   info_read_and_dispatch ();
  184.   terminal_unprep_terminal ();
  185.   close_dribble_file ();
  186. }
  187.  
  188. /* Here is a window-location dependent event loop.  Called from the
  189.    functions info_session (), and from read_xxx_in_echo_area (). */
  190. void
  191. info_read_and_dispatch ()
  192. {
  193.   unsigned char key;
  194.   int done;
  195.   done = 0;
  196.  
  197.   while (!done && !quit_info_immediately)
  198.     {
  199.       int lk;
  200.  
  201.       /* If we haven't just gone up or down a line, there is no
  202.      goal column for this window. */
  203.       if ((info_last_executed_command != info_next_line) &&
  204.       (info_last_executed_command != info_prev_line))
  205.     active_window->goal_column = -1;
  206.  
  207.       if (echo_area_is_active)
  208.     {
  209.       lk = echo_area_last_command_was_kill;
  210.       echo_area_prep_read ();
  211.     }
  212.  
  213.       if (!info_any_buffered_input_p ())
  214.     display_update_display (windows);
  215.  
  216.       display_cursor_at_point (active_window);
  217.       info_initialize_numeric_arg ();
  218.  
  219.       initialize_keyseq ();
  220.       key = info_get_input_char ();
  221.  
  222.       /* No errors yet.  We just read a character, that's all.  Only clear
  223.      the echo_area if it is not currently active. */
  224.       if (!echo_area_is_active)
  225.     window_clear_echo_area ();
  226.  
  227.       info_error_was_printed = 0;
  228.  
  229.       /* Do the selected command. */
  230.       info_dispatch_on_key (key, active_window->keymap);
  231.  
  232.       if (echo_area_is_active)
  233.     {
  234.       /* Echo area commands that do killing increment the value of
  235.          ECHO_AREA_LAST_COMMAND_WAS_KILL.  Thus, if there is no
  236.          change in the value of this variable, the last command
  237.          executed was not a kill command. */
  238.       if (lk == echo_area_last_command_was_kill)
  239.         echo_area_last_command_was_kill = 0;
  240.  
  241.       if (ea_last_executed_command == ea_newline ||
  242.           info_aborted_echo_area)
  243.         {
  244.           ea_last_executed_command = (VFunction *)NULL;
  245.           done = 1;
  246.         }
  247.  
  248.       if (info_last_executed_command == info_quit)
  249.         quit_info_immediately = 1;
  250.     }
  251.       else if (info_last_executed_command == info_quit)
  252.     done = 1;
  253.     }
  254. }
  255.  
  256. /* Found in signals.c */
  257. extern void initialize_info_signal_handler ();
  258.  
  259. /* Initialize the first info session by starting the terminal, window,
  260.    and display systems. */
  261. int
  262. initialize_info_session (node, clear_screen)
  263.      NODE *node;
  264.      int clear_screen;
  265. {
  266.   char *getenv (), *term_name;
  267.  
  268.   term_name = getenv ("TERM");
  269.   terminal_initialize_terminal (term_name);
  270.  
  271.   if (terminal_is_dumb_p)
  272.     {
  273.       if (!term_name)
  274.     term_name = "dumb";
  275.  
  276.       info_error (TERM_TOO_DUMB, term_name);
  277.       return -1;
  278.     }
  279.  
  280.   if (screenwidth < 4 || screenheight < 4)
  281.     {
  282.       info_error (TERM_TOO_SMALL, screenheight, screenwidth);
  283.       return -1;
  284.     }
  285.  
  286.   if (clear_screen)
  287.     terminal_clear_screen ();
  288.  
  289.   initialize_info_keymaps ();
  290.   window_initialize_windows (screenwidth, screenheight);
  291.   initialize_info_signal_handler ();
  292.   display_initialize_display (screenwidth, screenheight);
  293.   info_set_node_of_window (active_window, node);
  294.  
  295.   /* Tell the window system how to notify us when a window needs to be
  296.      asynchronously deleted (e.g., user resizes window very small). */
  297.   window_deletion_notifier = forget_window_and_nodes;
  298.  
  299.   /* If input has not been redirected yet, make it come from STDIN. */
  300.   if (!info_input_stream)
  301.     info_input_stream = stdin;
  302.  
  303.   info_windows_initialized_p = 1;
  304.  
  305.   return 0;
  306. }
  307.  
  308. /* Tell Info that input is coming from the file FILENAME. */
  309. void
  310. info_set_input_from_file (filename)
  311.      char *filename;
  312. {
  313.   FILE *stream;
  314.  
  315.   stream = fopen (filename, "r");
  316.  
  317.   if (!stream)
  318.     return;
  319.  
  320.   if (info_input_stream != stdin)
  321.     fclose (info_input_stream);
  322.  
  323.   info_input_stream = stream;
  324.  
  325.   if (stream != stdin)
  326.     display_inhibited = 1;
  327. }
  328.  
  329. /* Return the INFO_WINDOW containing WINDOW, or NULL if there isn't one. */
  330. static INFO_WINDOW *
  331. get_info_window_of_window (window)
  332.      WINDOW *window;
  333. {
  334.   register int i;
  335.   INFO_WINDOW *info_win = (INFO_WINDOW *)NULL;
  336.  
  337.   for (i = 0; info_windows && (info_win = info_windows[i]); i++)
  338.     if (info_win->window == window)
  339.       break;
  340.  
  341.   return (info_win);
  342. }
  343.  
  344. /* Reset the remembered pagetop and point of WINDOW to WINDOW's current
  345.    values if the window and node are the same as the current one being
  346.    displayed. */
  347. void
  348. set_remembered_pagetop_and_point (window)
  349.      WINDOW *window;
  350. {
  351.   INFO_WINDOW *info_win;
  352.  
  353.   info_win = get_info_window_of_window (window);
  354.  
  355.   if (!info_win)
  356.     return;
  357.  
  358.   if (info_win->nodes_index &&
  359.       (info_win->nodes[info_win->current] == window->node))
  360.     {
  361.       info_win->pagetops[info_win->current] = window->pagetop;
  362.       info_win->points[info_win->current] = window->point;
  363.     }
  364. }
  365.  
  366. void
  367. remember_window_and_node (window, node)
  368.      WINDOW *window;
  369.      NODE *node;
  370. {
  371.   INFO_WINDOW *info_win;
  372.  
  373.   /* See if we already have this window in our list. */
  374.   info_win = get_info_window_of_window (window);
  375.  
  376.   /* If the window wasn't already on our list, then make a new entry. */
  377.   if (!info_win)
  378.     {
  379.       info_win = (INFO_WINDOW *)xmalloc (sizeof (INFO_WINDOW));
  380.       info_win->window = window;
  381.       info_win->nodes = (NODE **)NULL;
  382.       info_win->pagetops = (int *)NULL;
  383.       info_win->points = (long *)NULL;
  384.       info_win->current = 0;
  385.       info_win->nodes_index = 0;
  386.       info_win->nodes_slots = 0;
  387.  
  388.       add_pointer_to_array (info_win, info_windows_index, info_windows,
  389.                 info_windows_slots, 10, INFO_WINDOW *);
  390.     }
  391.  
  392.   /* If this node, the current pagetop, and the current point are the
  393.      same as the last saved node and pagetop, don't really add this to
  394.      the list of history nodes. */
  395.   {
  396.     int ni = info_win->nodes_index - 1;
  397.  
  398.     if ((ni != -1) &&
  399.     (info_win->nodes[ni]->contents == node->contents) &&
  400.     (info_win->pagetops[ni] == window->pagetop) &&
  401.     (info_win->points[ni] == window->point))
  402.     return;
  403.   }
  404.  
  405.   /* Remember this node, the currently displayed pagetop, and the current
  406.      location of point in this window.  Because we are updating pagetops
  407.      and points as well as nodes, it is more efficient to avoid the
  408.      add_pointer_to_array macro here. */
  409.   if (info_win->nodes_index + 2 >= info_win->nodes_slots)
  410.     {
  411.       info_win->nodes = (NODE **)
  412.     xrealloc (info_win->nodes,
  413.           (info_win->nodes_slots += 20) * sizeof (NODE *));
  414.  
  415.       info_win->pagetops = (int *)
  416.     xrealloc (info_win->pagetops, info_win->nodes_slots * sizeof (int));
  417.  
  418.       info_win->points = (long *)
  419.     xrealloc (info_win->points, info_win->nodes_slots * sizeof (long));
  420.     }
  421.  
  422.   info_win->nodes[info_win->nodes_index] = node;
  423.   info_win->pagetops[info_win->nodes_index] = window->pagetop;
  424.   info_win->points[info_win->nodes_index] = window->point;
  425.   info_win->current = info_win->nodes_index++;
  426.   info_win->nodes[info_win->nodes_index] = (NODE *)NULL;
  427.   info_win->pagetops[info_win->nodes_index] = 0;
  428.   info_win->points[info_win->nodes_index] = 0;
  429. }
  430.  
  431. #define DEBUG_FORGET_WINDOW_AND_NODES
  432. #if defined (DEBUG_FORGET_WINDOW_AND_NODES)
  433. static void
  434. consistency_check_info_windows ()
  435. {
  436.   register int i;
  437.   INFO_WINDOW *info_win;
  438.  
  439.   for (i = 0; i < info_windows_index; i++)
  440.     {
  441.       WINDOW *win;
  442.  
  443.       for (win = windows; win; win = win->next)
  444.     if (win == info_windows[i]->window)
  445.       break;
  446.  
  447.       if (!win)
  448.     abort ();
  449.     }
  450. }
  451. #endif /* DEBUG_FORGET_WINDOW_AND_NODES */
  452.  
  453. /* Remove WINDOW and its associated list of nodes from INFO_WINDOWS. */
  454. void
  455. forget_window_and_nodes (window)
  456.      WINDOW *window;
  457. {
  458.   register int i;
  459.   INFO_WINDOW *info_win = (INFO_WINDOW *)NULL;
  460.  
  461.   for (i = 0; info_windows && (info_win = info_windows[i]); i++)
  462.     if (info_win->window == window)
  463.       break;
  464.  
  465.   /* If we found the window to forget, then do so. */
  466.   if (info_win)
  467.     {
  468.       while (i < info_windows_index)
  469.     info_windows[i] = info_windows[++i];
  470.  
  471.       info_windows_index--;
  472.       info_windows[info_windows_index] = (INFO_WINDOW *)NULL;
  473.  
  474.       if (info_win->nodes)
  475.     {
  476.       for (i = 0; info_win->nodes[i]; i++)
  477.         if (internal_info_node_p (info_win->nodes[i]))
  478.           free (info_win->nodes[i]);
  479.       free (info_win->nodes);
  480.  
  481.       maybe_free (info_win->pagetops);
  482.       maybe_free (info_win->points);
  483.     }
  484.  
  485.       free (info_win);
  486.     }
  487. #if defined (DEBUG_FORGET_WINDOW_AND_NODES)
  488.   consistency_check_info_windows ();
  489. #endif /* DEBUG_FORGET_WINDOW_AND_NODES */
  490. }
  491.  
  492. /* Set WINDOW to show NODE.  Remember the new window in our list of Info
  493.    windows.  If we are doing automatic footnote display, also try to display
  494.    the footnotes for this window. */
  495. void
  496. info_set_node_of_window (window, node)
  497.      WINDOW *window;
  498.      NODE *node;
  499. {
  500.   /* Put this node into the window. */
  501.   window_set_node_of_window (window, node);
  502.  
  503.   /* Remember this node and window in our list of info windows. */
  504.   remember_window_and_node (window, node);
  505.  
  506.   /* If doing auto-footnote display/undisplay, show the footnotes belonging
  507.      to this window's node. */
  508.   if (auto_footnotes_p)
  509.     info_get_or_remove_footnotes (window);
  510. }
  511.  
  512.  
  513. /* **************************************************************** */
  514. /*                                    */
  515. /*               Info Movement Commands                */
  516. /*                                    */
  517. /* **************************************************************** */
  518.  
  519. /* Change the pagetop of WINDOW to DESIRED_TOP, perhaps scrolling the screen
  520.    to do so. */
  521. void
  522. set_window_pagetop (window, desired_top)
  523.      WINDOW *window;
  524.      int desired_top;
  525. {
  526.   int point_line, old_pagetop;
  527.  
  528.   if (desired_top < 0)
  529.     desired_top = 0;
  530.   else if (desired_top > window->line_count)
  531.     desired_top = window->line_count - 1;
  532.  
  533.   if (window->pagetop == desired_top)
  534.     return;
  535.  
  536.   old_pagetop = window->pagetop;
  537.   window->pagetop = desired_top;
  538.  
  539.   /* Make sure that point appears in this window. */
  540.   point_line = window_line_of_point (window);
  541.   if ((point_line < window->pagetop) ||
  542.       ((point_line - window->pagetop) > window->height - 1))
  543.     window->point =
  544.       window->line_starts[window->pagetop] - window->node->contents;
  545.  
  546.   window->flags |= W_UpdateWindow;
  547.  
  548.   /* Find out which direction to scroll, and scroll the window in that
  549.      direction.  Do this only if there would be a savings in redisplay
  550.      time.  This is true if the amount to scroll is less than the height
  551.      of the window, and if the number of lines scrolled would be greater
  552.      than 10 % of the window's height. */
  553.   if (old_pagetop < desired_top)
  554.     {
  555.       int start, end, amount;
  556.  
  557.       amount = desired_top - old_pagetop;
  558.  
  559.       if ((amount >= window->height) ||
  560.       (((window->height - amount) * 10) < window->height))
  561.     return;
  562.  
  563.       start = amount + window->first_row;
  564.       end = window->height + window->first_row;
  565.  
  566.       display_scroll_display (start, end, -amount);
  567.     }
  568.   else
  569.     {
  570.       int start, end, amount;
  571.  
  572.       amount = old_pagetop - desired_top;
  573.  
  574.       if ((amount >= window->height) ||
  575.       (((window->height - amount) * 10) < window->height))
  576.     return;
  577.  
  578.       start = window->first_row;
  579.       end = (window->first_row + window->height) - amount;
  580.       display_scroll_display (start, end, amount);
  581.     }
  582. }
  583.  
  584. /* Immediately make WINDOW->point visible on the screen, and move the
  585.    terminal cursor there. */
  586. static void
  587. info_show_point (window)
  588.      WINDOW *window;
  589. {
  590.   int old_pagetop;
  591.  
  592.   old_pagetop = window->pagetop;
  593.   window_adjust_pagetop (window);
  594.   if (old_pagetop != window->pagetop)
  595.     {
  596.       int new_pagetop;
  597.  
  598.       new_pagetop = window->pagetop;
  599.       window->pagetop = old_pagetop;
  600.       set_window_pagetop (window, new_pagetop);
  601.     }
  602.  
  603.   if (window->flags & W_UpdateWindow)
  604.     display_update_one_window (window);
  605.  
  606.   display_cursor_at_point (window);
  607. }
  608.  
  609. /* Move WINDOW->point from OLD line index to NEW line index. */
  610. static void
  611. move_to_new_line (old, new, window)
  612.      int old, new;
  613.      WINDOW *window;
  614. {
  615.   if (old == -1)
  616.     {
  617.       info_error (CANT_FIND_POINT);
  618.     }
  619.   else
  620.     {
  621.       int goal;
  622.  
  623.       if (new >= window->line_count || new < 0)
  624.     return;
  625.  
  626.       goal = window_get_goal_column (window);
  627.       window->goal_column = goal;
  628.  
  629.       window->point = window->line_starts[new] - window->node->contents;
  630.       window->point += window_chars_to_goal (window->line_starts[new], goal);
  631.       info_show_point (window);
  632.     }
  633. }
  634.  
  635. /* Move WINDOW's point down to the next line if possible. */
  636. DECLARE_INFO_COMMAND (info_next_line, "Move down to the next line")
  637. {
  638.   int old_line, new_line;
  639.  
  640.   if (count < 0)
  641.     info_prev_line (window, -count, key);
  642.   else
  643.     {
  644.       old_line = window_line_of_point (window);
  645.       new_line = old_line + count;
  646.       move_to_new_line (old_line, new_line, window);
  647.     }
  648. }
  649.  
  650. /* Move WINDOW's point up to the previous line if possible. */
  651. DECLARE_INFO_COMMAND (info_prev_line, "Move up to the previous line")
  652. {
  653.   int old_line, new_line;
  654.  
  655.   if (count < 0)
  656.     info_next_line (window, -count, key);
  657.   else
  658.     {
  659.       old_line = window_line_of_point (window);
  660.       new_line = old_line - count;
  661.       move_to_new_line (old_line, new_line, window);
  662.     }
  663. }
  664.  
  665. /* Move WINDOW's point to the end of the true line. */
  666. DECLARE_INFO_COMMAND (info_end_of_line, "Move to the end of the line")
  667. {
  668.   register int point, len;
  669.   register char *buffer;
  670.  
  671.   buffer = window->node->contents;
  672.   len = window->node->nodelen;
  673.  
  674.   for (point = window->point;
  675.        (point < len) && (buffer[point] != '\n');
  676.        point++);
  677.  
  678.   if (point != window->point)
  679.     {
  680.       window->point = point;
  681.       info_show_point (window);
  682.     }
  683. }
  684.  
  685. /* Move WINDOW's point to the beginning of the true line. */
  686. DECLARE_INFO_COMMAND (info_beginning_of_line, "Move to the start of the line")
  687. {
  688.   register int point;
  689.   register char *buffer;
  690.  
  691.   buffer = window->node->contents;
  692.   point = window->point;
  693.  
  694.   for (; (point) && (buffer[point - 1] != '\n'); point--);
  695.  
  696.   /* If at a line start alreay, do nothing. */
  697.   if (point != window->point)
  698.     {
  699.       window->point = point;
  700.       info_show_point (window);
  701.     }
  702. }
  703.  
  704. /* Move point forward in the node. */
  705. DECLARE_INFO_COMMAND (info_forward_char, "Move forward a character")
  706. {
  707.   if (count < 0)
  708.     info_backward_char (window, -count, key);
  709.   else
  710.     {
  711.       window->point += count;
  712.  
  713.       if (window->point >= window->node->nodelen)
  714.     window->point = window->node->nodelen - 1;
  715.  
  716.       info_show_point (window);
  717.     }
  718. }
  719.  
  720. /* Move point backward in the node. */
  721. DECLARE_INFO_COMMAND (info_backward_char, "Move backward a character")
  722. {
  723.   if (count < 0)
  724.     info_forward_char (window, -count, key);
  725.   else
  726.     {
  727.       window->point -= count;
  728.  
  729.       if (window->point < 0)
  730.     window->point = 0;
  731.  
  732.       info_show_point (window);
  733.     }
  734. }
  735.  
  736. #define alphabetic(c) (islower (c) || isupper (c) || isdigit (c))
  737.  
  738. /* Move forward a word in this node. */
  739. DECLARE_INFO_COMMAND (info_forward_word, "Move forward a word")
  740. {
  741.   long point;
  742.   char *buffer;
  743.   int end, c;
  744.  
  745.   if (count < 0)
  746.     {
  747.       info_backward_word (window, -count, key);
  748.       return;
  749.     }
  750.  
  751.   point = window->point;
  752.   buffer = window->node->contents;
  753.   end = window->node->nodelen;
  754.  
  755.   while (count)
  756.     {
  757.       if (point + 1 >= end)
  758.     return;
  759.  
  760.       /* If we are not in a word, move forward until we are in one.
  761.      Then, move forward until we hit a non-alphabetic character. */
  762.       c = buffer[point];
  763.  
  764.       if (!alphabetic (c))
  765.     {
  766.       while (++point < end)
  767.         {
  768.           c = buffer[point];
  769.           if (alphabetic (c))
  770.         break;
  771.         }
  772.     }
  773.  
  774.       if (point >= end) return;
  775.  
  776.       while (++point < end)
  777.     {
  778.       c = buffer[point];
  779.       if (!alphabetic (c))
  780.         break;
  781.     }
  782.       --count;
  783.     }
  784.   window->point = point;
  785.   info_show_point (window);
  786. }
  787.  
  788. DECLARE_INFO_COMMAND (info_backward_word, "Move backward a word")
  789. {
  790.   long point;
  791.   char *buffer;
  792.   int c;
  793.  
  794.   if (count < 0)
  795.     {
  796.       info_forward_word (window, -count, key);
  797.       return;
  798.     }
  799.  
  800.   buffer = window->node->contents;
  801.   point = window->point;
  802.  
  803.   while (count)
  804.     {
  805.       if (point == 0)
  806.     break;
  807.  
  808.       /* Like info_forward_word (), except that we look at the
  809.      characters just before point. */
  810.  
  811.       c = buffer[point - 1];
  812.  
  813.       if (!alphabetic (c))
  814.     {
  815.       while (--point)
  816.         {
  817.           c = buffer[point - 1];
  818.           if (alphabetic (c))
  819.         break;
  820.         }
  821.     }
  822.  
  823.       while (point)
  824.     {
  825.       c = buffer[point - 1];
  826.       if (!alphabetic (c))
  827.         break;
  828.       else
  829.         --point;
  830.     }
  831.       --count;
  832.     }
  833.   window->point = point;
  834.   info_show_point (window);
  835. }
  836.  
  837. /* Here is a list of time counter names which correspond to ordinal numbers.
  838.    It is used to print "once" instead of "1". */
  839. static char *counter_names[] = {
  840.   "not at all", "once", "twice", "three", "four", "five", "six",
  841.   (char *)NULL
  842. };
  843.  
  844. /* Buffer used to return values from times_description (). */
  845. static char td_buffer[50];
  846.  
  847. /* Function returns a static string fully describing the number of times
  848.    present in COUNT. */
  849. static char *
  850. times_description (count)
  851.      int count;
  852. {
  853.   register int i;
  854.  
  855.   td_buffer[0] = '\0';
  856.  
  857.   for (i = 0; counter_names[i]; i++)
  858.     if (count == i)
  859.       break;
  860.  
  861.   if (counter_names[i])
  862.     sprintf (td_buffer, "%s%s", counter_names[i], count > 2 ? " times" : "");
  863.   else
  864.     sprintf (td_buffer, "%d times", count);
  865.  
  866.   return (td_buffer);
  867. }
  868.  
  869. /* Variable controlling the behaviour of default scrolling when you are
  870.    already at the bottom of a node.  Possible values are defined in session.h.
  871.    The meanings are:
  872.  
  873.    IS_Continuous    Try to get first menu item, or failing that, the
  874.             "Next:" pointer, or failing that, the "Up:" and
  875.             "Next:" of the up.
  876.    IS_NextOnly        Try to get "Next:" menu item.
  877.    IS_PageOnly        Simply give up at the bottom of a node. */
  878.  
  879. int info_scroll_behaviour = IS_Continuous;
  880.  
  881. /* Choices used by the completer when reading a value for the user-visible
  882.    variable "scroll-behaviour". */
  883. char *info_scroll_choices[] = {
  884.   "Continuous", "Next Only", "Page Only", (char *)NULL
  885. };
  886.  
  887. /* Move to 1st menu item, Next, Up/Next, or error in this window. */
  888. static void
  889. forward_move_node_structure (window, behaviour)
  890.      WINDOW *window;
  891.      int behaviour;
  892. {
  893.   switch (behaviour)
  894.     {
  895.     case IS_PageOnly:
  896.       info_error (AT_NODE_BOTTOM);
  897.       break;
  898.  
  899.     case IS_NextOnly:
  900.       info_next_label_of_node (window->node);
  901.       if (!info_parsed_nodename && !info_parsed_filename)
  902.     info_error ("No \"Next\" pointer for this node.");
  903.       else
  904.     {
  905.       window_message_in_echo_area ("Following \"Next\" node...");
  906.       info_handle_pointer ("Next", window);
  907.     }
  908.       break;
  909.  
  910.     case IS_Continuous:
  911.       {
  912.     /* First things first.  If this node contains a menu, move down
  913.        into the menu. */
  914.     {
  915.       REFERENCE **menu;
  916.  
  917.       menu = info_menu_of_node (window->node);
  918.  
  919.       if (menu)
  920.         {
  921.           info_free_references (menu);
  922.           window_message_in_echo_area ("Selecting first menu item...");
  923.           info_menu_digit (window, 1, '1');
  924.           return;
  925.         }
  926.     }
  927.  
  928.     /* Okay, this node does not contain a menu.  If it contains a
  929.        "Next:" pointer, use that. */
  930.     info_next_label_of_node (window->node);
  931.     if (info_label_was_found)
  932.       {
  933.         window_message_in_echo_area ("Selecting \"Next\" node...");
  934.         info_handle_pointer ("Next", window);
  935.         return;
  936.       }
  937.  
  938.     /* Okay, there wasn't a "Next:" for this node.  Move "Up:" until we
  939.        can move "Next:".  If that isn't possible, complain that there
  940.        are no more nodes. */
  941.     {
  942.       int up_counter, old_current;
  943.       INFO_WINDOW *info_win;
  944.  
  945.       /* Remember the current node and location. */
  946.       info_win = get_info_window_of_window (window);
  947.       old_current = info_win->current;
  948.  
  949.       /* Back up through the "Up:" pointers until we have found a "Next:"
  950.          that isn't the same as the first menu item found in that node. */
  951.       up_counter = 0;
  952.       while (!info_error_was_printed)
  953.         {
  954.           info_up_label_of_node (window->node);
  955.           if (info_label_was_found)
  956.         {
  957.           info_handle_pointer ("Up", window);
  958.           if (info_error_was_printed)
  959.             continue;
  960.  
  961.           up_counter++;
  962.  
  963.           info_next_label_of_node (window->node);
  964.  
  965.           /* If no "Next" pointer, keep backing up. */
  966.           if (!info_label_was_found)
  967.             continue;
  968.  
  969.           /* If this node's first menu item is the same as this node's
  970.              Next pointer, keep backing up. */
  971.           if (!info_parsed_filename)
  972.             {
  973.               REFERENCE **menu;
  974.               char *next_nodename;
  975.  
  976.               /* Remember the name of the Next node, since reading
  977.              the menu can overwrite the contents of the
  978.              info_parsed_xxx strings. */
  979.               next_nodename = savestring (info_parsed_nodename);
  980.  
  981.               menu = info_menu_of_node (window->node);
  982.               if (menu &&
  983.               (strcmp
  984.                (menu[0]->nodename, next_nodename) == 0))
  985.             {
  986.               info_free_references (menu);
  987.               free (next_nodename);
  988.               continue;
  989.             }
  990.               else
  991.             {
  992.               /* Restore the world to where it was before
  993.                  reading the menu contents. */
  994.               info_free_references (menu);
  995.               free (next_nodename);
  996.               info_next_label_of_node (window->node);
  997.             }
  998.             }
  999.  
  1000.           /* This node has a "Next" pointer, and it is not the
  1001.              same as the first menu item found in this node. */
  1002.           window_message_in_echo_area
  1003.             ("Moving \"Up\" %s, then \"Next\".",
  1004.              times_description (up_counter));
  1005.  
  1006.           info_handle_pointer ("Next", window);
  1007.           return;
  1008.         }
  1009.           else
  1010.         {
  1011.           /* No more "Up" pointers.  Print an error, and call it
  1012.              quits. */
  1013.           register int i;
  1014.  
  1015.           for (i = 0; i < up_counter; i++)
  1016.             {
  1017.               info_win->nodes_index--;
  1018.               free (info_win->nodes[info_win->nodes_index]);
  1019.               info_win->nodes[info_win->nodes_index] = (NODE *)NULL;
  1020.             }
  1021.           info_win->current = old_current;
  1022.           window->node = info_win->nodes[old_current];
  1023.           window->pagetop = info_win->pagetops[old_current];
  1024.           window->point = info_win->points[old_current];
  1025.           recalculate_line_starts (window);
  1026.           window->flags |= W_UpdateWindow;
  1027.           info_error ("No more nodes.");
  1028.         }
  1029.         }
  1030.     }
  1031.     break;
  1032.       }
  1033.     }
  1034. }
  1035.  
  1036. /* Move Prev, Up or error in WINDOW depending on BEHAVIOUR. */
  1037. static void
  1038. backward_move_node_structure (window, behaviour)
  1039.      WINDOW *window;
  1040.      int behaviour;
  1041. {
  1042.   switch (behaviour)
  1043.     {
  1044.     case IS_PageOnly:
  1045.       info_error (AT_NODE_TOP);
  1046.       break;
  1047.  
  1048.     case IS_NextOnly:
  1049.       info_prev_label_of_node (window->node);
  1050.       if (!info_parsed_nodename && !info_parsed_filename)
  1051.     info_error ("No \"Prev\" for this node.");
  1052.       else
  1053.     {
  1054.       window_message_in_echo_area ("Moving \"Prev\" in this window.");
  1055.       info_handle_pointer ("Prev", window);
  1056.     }
  1057.       break;
  1058.  
  1059.     case IS_Continuous:
  1060.       info_prev_label_of_node (window->node);
  1061.  
  1062.       if (!info_parsed_nodename && !info_parsed_filename)
  1063.     {
  1064.       info_up_label_of_node (window->node);
  1065.       if (!info_parsed_nodename && !info_parsed_filename)
  1066.         info_error ("No \"Prev\" or \"Up\" for this node.");
  1067.       else
  1068.         {
  1069.           window_message_in_echo_area ("Moving \"Up\" in this window.");
  1070.           info_handle_pointer ("Up", window);
  1071.         }
  1072.     }
  1073.       else
  1074.     {
  1075.       REFERENCE **menu;
  1076.       int inhibit_menu_traversing = 0;
  1077.  
  1078.       /* Watch out!  If this node's Prev is the same as the Up, then
  1079.          move Up.  Otherwise, we could move Prev, and then to the last
  1080.          menu item in the Prev.  This would cause the user to loop
  1081.          through a subsection of the info file. */
  1082.       if (!info_parsed_filename && info_parsed_nodename)
  1083.         {
  1084.           char *pnode;
  1085.  
  1086.           pnode = savestring (info_parsed_nodename);
  1087.           info_up_label_of_node (window->node);
  1088.  
  1089.           if (!info_parsed_filename && info_parsed_nodename &&
  1090.           strcmp (info_parsed_nodename, pnode) == 0)
  1091.         {
  1092.           /* The nodes are the same.  Inhibit moving to the last
  1093.              menu item. */
  1094.           free (pnode);
  1095.           inhibit_menu_traversing = 1;
  1096.         }
  1097.           else
  1098.         {
  1099.           free (pnode);
  1100.           info_prev_label_of_node (window->node);
  1101.         }
  1102.         }
  1103.  
  1104.       /* Move to the previous node.  If this node now contains a menu,
  1105.          and we have not inhibited movement to it, move to the node
  1106.          corresponding to the last menu item. */
  1107.       window_message_in_echo_area ("Moving \"Prev\" in this window.");
  1108.       info_handle_pointer ("Prev", window);
  1109.  
  1110.       if (!inhibit_menu_traversing)
  1111.         {
  1112.           while (!info_error_was_printed &&
  1113.              (menu = info_menu_of_node (window->node)))
  1114.         {
  1115.           info_free_references (menu);
  1116.           window_message_in_echo_area
  1117.             ("Moving to \"Prev\"'s last menu item.");
  1118.           info_menu_digit (window, 1, '0');
  1119.         }
  1120.         }
  1121.     }
  1122.       break;
  1123.     }
  1124. }
  1125.  
  1126. /* Move continuously forward through the node structure of this info file. */
  1127. DECLARE_INFO_COMMAND (info_global_next_node,
  1128.               "Move forwards or down through node structure")
  1129. {
  1130.   if (count < 0)
  1131.     info_global_prev_node (window, -count, key);
  1132.   else
  1133.     {
  1134.       while (count && !info_error_was_printed)
  1135.     {
  1136.       forward_move_node_structure (window, IS_Continuous);
  1137.       count--;
  1138.     }
  1139.     }
  1140. }
  1141.  
  1142. /* Move continuously backward through the node structure of this info file. */
  1143. DECLARE_INFO_COMMAND (info_global_prev_node,
  1144.               "Move backwards or up through node structure")
  1145. {
  1146.   if (count < 0)
  1147.     info_global_next_node (window, -count, key);
  1148.   else
  1149.     {
  1150.       while (count && !info_error_was_printed)
  1151.     {
  1152.       backward_move_node_structure (window, IS_Continuous);
  1153.       count--;
  1154.     }
  1155.     }
  1156. }
  1157.  
  1158. /* Show the next screen of WINDOW's node. */
  1159. DECLARE_INFO_COMMAND (info_scroll_forward, "Scroll forward in this window")
  1160. {
  1161.   if (count < 0)
  1162.     info_scroll_backward (window, -count, key);
  1163.   else
  1164.     {
  1165.       int desired_top;
  1166.  
  1167.       /* Without an explicit numeric argument, scroll the bottom two
  1168.      lines to the top of this window,  Or, if at bottom of window,
  1169.      and the user wishes to scroll through nodes get the "Next" node
  1170.      for this window. */
  1171.       if (!info_explicit_arg && count == 1)
  1172.     {
  1173.       desired_top = window->pagetop + (window->height - 2);
  1174.  
  1175.       /* If there are no more lines to scroll here, error, or get
  1176.          another node, depending on INFO_SCROLL_BEHAVIOUR. */
  1177.       if (desired_top > window->line_count)
  1178.         {
  1179.           int behaviour = info_scroll_behaviour;
  1180.  
  1181.           /* Here is a hack.  If the key being used is not SPC, do the
  1182.          PageOnly behaviour. */
  1183.           if (key != SPC && key != DEL)
  1184.         behaviour = IS_PageOnly;
  1185.  
  1186.           forward_move_node_structure (window, behaviour);
  1187.           return;
  1188.         }
  1189.     }
  1190.       else
  1191.     desired_top = window->pagetop + count;
  1192.  
  1193.       if (desired_top >= window->line_count)
  1194.     desired_top = window->line_count - 2;
  1195.  
  1196.       if (window->pagetop > desired_top)
  1197.     return;
  1198.       else
  1199.     set_window_pagetop (window, desired_top);
  1200.     }
  1201. }
  1202.  
  1203. /* Show the previous screen of WINDOW's node. */
  1204. DECLARE_INFO_COMMAND (info_scroll_backward, "Scroll backward in this window")
  1205. {
  1206.   if (count < 0)
  1207.     info_scroll_forward (window, -count, key);
  1208.   else
  1209.     {
  1210.       int desired_top;
  1211.  
  1212.       /* Without an explicit numeric argument, scroll the top two lines
  1213.      to the bottom of this window, or move to the previous, or Up'th
  1214.      node. */
  1215.       if (!info_explicit_arg && count == 1)
  1216.     {
  1217.       desired_top = window->pagetop - (window->height - 2);
  1218.  
  1219.       if ((desired_top < 0) && (window->pagetop == 0))
  1220.         {
  1221.           int behaviour = info_scroll_behaviour;
  1222.  
  1223.           /* Same kind of hack as in info_scroll_forward.  If the key
  1224.          used to invoke this command is not DEL, do only the PageOnly
  1225.          behaviour. */
  1226.           if (key != DEL && key != SPC)
  1227.         behaviour = IS_PageOnly;
  1228.  
  1229.           backward_move_node_structure (window, behaviour);
  1230.           return;
  1231.         }
  1232.     }
  1233.       else
  1234.     desired_top = window->pagetop - count;
  1235.  
  1236.       if (desired_top < 0)
  1237.     desired_top = 0;
  1238.  
  1239.       set_window_pagetop (window, desired_top);
  1240.     }
  1241. }
  1242.  
  1243. /* Move to the beginning of the node. */
  1244. DECLARE_INFO_COMMAND (info_beginning_of_node, "Move to the start of this node")
  1245. {
  1246.   window->pagetop = window->point = 0;
  1247.   window->flags |= W_UpdateWindow;
  1248. }
  1249.  
  1250. /* Move to the end of the node. */
  1251. DECLARE_INFO_COMMAND (info_end_of_node, "Move to the end of this node")
  1252. {
  1253.   window->point = window->node->nodelen - 1;
  1254.   info_show_point (window);
  1255. }
  1256.  
  1257. /* **************************************************************** */
  1258. /*                                    */
  1259. /*           Commands for Manipulating Windows            */
  1260. /*                                    */
  1261. /* **************************************************************** */
  1262.  
  1263. /* Make the next window in the chain be the active window. */
  1264. DECLARE_INFO_COMMAND (info_next_window, "Select the next window")
  1265. {
  1266.   if (count < 0)
  1267.     {
  1268.       info_prev_window (window, -count, key);
  1269.       return;
  1270.     }
  1271.  
  1272.   /* If no other window, error now. */
  1273.   if (!windows->next && !echo_area_is_active)
  1274.     {
  1275.       info_error (ONE_WINDOW);
  1276.       return;
  1277.     }
  1278.  
  1279.   while (count--)
  1280.     {
  1281.       if (window->next)
  1282.     window = window->next;
  1283.       else
  1284.     {
  1285.       if (window == the_echo_area || !echo_area_is_active)
  1286.         window = windows;
  1287.       else
  1288.         window = the_echo_area;
  1289.     }
  1290.     }
  1291.  
  1292.   if (active_window != window)
  1293.     {
  1294.       if (auto_footnotes_p)
  1295.     info_get_or_remove_footnotes (window);
  1296.  
  1297.       window->flags |= W_UpdateWindow;
  1298.       active_window = window;
  1299.     }
  1300. }
  1301.  
  1302. /* Make the previous window in the chain be the active window. */
  1303. DECLARE_INFO_COMMAND (info_prev_window, "Select the previous window")
  1304. {
  1305.   if (count < 0)
  1306.     {
  1307.       info_next_window (window, -count, key);
  1308.       return;
  1309.     }
  1310.  
  1311.   /* Only one window? */
  1312.  
  1313.   if (!windows->next && !echo_area_is_active)
  1314.     {
  1315.       info_error (ONE_WINDOW);
  1316.       return;
  1317.     }
  1318.  
  1319.   while (count--)
  1320.     {
  1321.       /* If we are in the echo area, or if the echo area isn't active and we
  1322.      are in the first window, find the last window in the chain. */
  1323.       if (window == the_echo_area ||
  1324.       (window == windows && !echo_area_is_active))
  1325.     {
  1326.       register WINDOW *win, *last;
  1327.  
  1328.       for (win = windows; win; win = win->next)
  1329.         last = win;
  1330.  
  1331.       window = last;
  1332.     }
  1333.       else
  1334.     {
  1335.       if (window == windows)
  1336.         window = the_echo_area;
  1337.       else
  1338.         window = window->prev;
  1339.     }
  1340.     }
  1341.  
  1342.   if (active_window != window)
  1343.     {
  1344.       if (auto_footnotes_p)
  1345.     info_get_or_remove_footnotes (window);
  1346.  
  1347.       window->flags |= W_UpdateWindow;
  1348.       active_window = window;
  1349.     }
  1350. }
  1351.  
  1352. /* Split WINDOW into two windows, both showing the same node.  If we
  1353.    are automatically tiling windows, re-tile after the split. */
  1354. DECLARE_INFO_COMMAND (info_split_window, "Split the current window")
  1355. {
  1356.   WINDOW *split, *old_active;
  1357.   int pagetop;
  1358.  
  1359.   /* Remember the current pagetop of the window being split.  If it doesn't
  1360.      change, we can scroll its contents around after the split. */
  1361.   pagetop = window->pagetop;
  1362.  
  1363.   /* Make the new window. */
  1364.   old_active = active_window;
  1365.   active_window = window;
  1366.   split = window_make_window (window->node);
  1367.   active_window = old_active;
  1368.  
  1369.   if (!split)
  1370.     {
  1371.       info_error (WIN_TOO_SMALL);
  1372.     }
  1373.   else
  1374.     {
  1375. #if defined (SPLIT_BEFORE_ACTIVE)
  1376.       /* Try to scroll the old window into its new postion. */
  1377.       if (pagetop == window->pagetop)
  1378.     {
  1379.       int start, end, amount;
  1380.  
  1381.       start = split->first_row;
  1382.       end = start + window->height;
  1383.       amount = split->height + 1;
  1384.       display_scroll_display (start, end, amount);
  1385.     }
  1386. #else /* !SPLIT_BEFORE_ACTIVE */
  1387.       /* Make sure point still appears in the active window. */
  1388.       info_show_point (window);
  1389. #endif /* !SPLIT_BEFORE_ACTIVE */
  1390.  
  1391.       /* If the window just split was one internal to Info, try to display
  1392.      something else in it. */
  1393.       if (internal_info_node_p (split->node))
  1394.     {
  1395.       register int i, j;
  1396.       INFO_WINDOW *iw;
  1397.       NODE *node = (NODE *)NULL;
  1398.       char *filename;
  1399.  
  1400.       for (i = 0; iw = info_windows[i]; i++)
  1401.         {
  1402.           for (j = 0; j < iw->nodes_index; j++)
  1403.         if (!internal_info_node_p (iw->nodes[j]))
  1404.           {
  1405.             if (iw->nodes[j]->parent)
  1406.               filename = iw->nodes[j]->parent;
  1407.             else
  1408.               filename = iw->nodes[j]->filename;
  1409.  
  1410.             node = info_get_node (filename, iw->nodes[j]->nodename);
  1411.             if (node)
  1412.               {
  1413.             window_set_node_of_window (split, node);
  1414.             i = info_windows_index - 1;
  1415.             break;
  1416.               }
  1417.           }
  1418.         }
  1419.     }
  1420.       split->pagetop = window->pagetop;
  1421.  
  1422.       if (auto_tiling_p)
  1423.     window_tile_windows (DONT_TILE_INTERNALS);
  1424.       else
  1425.     window_adjust_pagetop (split);
  1426.  
  1427.       remember_window_and_node (split, split->node);
  1428.     }
  1429. }
  1430.  
  1431. /* Delete WINDOW, forgetting the list of last visited nodes.  If we are
  1432.    automatically displaying footnotes, show or remove the footnotes
  1433.    window.  If we are automatically tiling windows, re-tile after the
  1434.    deletion. */
  1435. DECLARE_INFO_COMMAND (info_delete_window, "Delete the current window")
  1436. {
  1437.   if (!windows->next)
  1438.     {
  1439.       info_error (CANT_KILL_LAST);
  1440.     }
  1441.   else if (window->flags & W_WindowIsPerm)
  1442.     {
  1443.       info_error ("Cannot delete a permanent window");
  1444.     }
  1445.   else
  1446.     {
  1447.       info_delete_window_internal (window);
  1448.  
  1449.       if (auto_footnotes_p)
  1450.     info_get_or_remove_footnotes (active_window);
  1451.  
  1452.       if (auto_tiling_p)
  1453.     window_tile_windows (DONT_TILE_INTERNALS);
  1454.     }
  1455. }
  1456.  
  1457. /* Do the physical deletion of WINDOW, and forget this window and
  1458.    associated nodes. */
  1459. void
  1460. info_delete_window_internal (window)
  1461.      WINDOW *window;
  1462. {
  1463.   if (windows->next && ((window->flags & W_WindowIsPerm) == 0))
  1464.     {
  1465.       /* We not only delete the window from the display, we forget it from
  1466.      our list of remembered windows. */
  1467.       forget_window_and_nodes (window);
  1468.       window_delete_window (window);
  1469.  
  1470.       if (echo_area_is_active)
  1471.     echo_area_inform_of_deleted_window (window);
  1472.     }
  1473. }
  1474.  
  1475. /* Just keep WINDOW, deleting all others. */
  1476. DECLARE_INFO_COMMAND (info_keep_one_window, "Delete all other windows")
  1477. {
  1478.   int num_deleted;        /* The number of windows we deleted. */
  1479.   int pagetop, start, end;
  1480.  
  1481.   /* Remember a few things about this window.  We may be able to speed up
  1482.      redisplay later by scrolling its contents. */
  1483.   pagetop = window->pagetop;
  1484.   start = window->first_row;
  1485.   end = start + window->height;
  1486.  
  1487.   num_deleted = 0;
  1488.  
  1489.   while (1)
  1490.     {
  1491.       WINDOW *win;
  1492.  
  1493.       /* Find an eligible window and delete it.  If no eligible windows
  1494.      are found, we are done.  A window is eligible for deletion if
  1495.      is it not permanent, and it is not WINDOW. */
  1496.       for (win = windows; win; win = win->next)
  1497.     if (win != window && ((win->flags & W_WindowIsPerm) == 0))
  1498.       break;
  1499.  
  1500.       if (!win)
  1501.     break;
  1502.  
  1503.       info_delete_window_internal (win);
  1504.       num_deleted++;
  1505.     }
  1506.  
  1507.   /* Scroll the contents of this window into the right place so that the
  1508.      user doesn't have to wait any longer than necessary for redisplay. */
  1509.   if (num_deleted)
  1510.     {
  1511.       int amount;
  1512.  
  1513.       amount = (window->first_row - start);
  1514.       amount -= (window->pagetop - pagetop);
  1515.       display_scroll_display (start, end, amount);
  1516.     }
  1517.  
  1518.   window->flags |= W_UpdateWindow;
  1519. }
  1520.  
  1521. /* Scroll the "other" window of WINDOW. */
  1522. DECLARE_INFO_COMMAND (info_scroll_other_window, "Scroll the other window")
  1523. {
  1524.   WINDOW *other;
  1525.  
  1526.   /* If only one window, give up. */
  1527.   if (!windows->next)
  1528.     {
  1529.       info_error (ONE_WINDOW);
  1530.       return;
  1531.     }
  1532.  
  1533.   other = window->next;
  1534.  
  1535.   if (!other)
  1536.     other = window->prev;
  1537.  
  1538.   info_scroll_forward (other, count, key);
  1539. }
  1540.  
  1541. /* Change the size of WINDOW by AMOUNT. */
  1542. DECLARE_INFO_COMMAND (info_grow_window, "Grow (or shrink) this window")
  1543. {
  1544.   window_change_window_height (window, count);
  1545. }
  1546.  
  1547. /* When non-zero, tiling takes place automatically when info_split_window
  1548.    is called. */
  1549. int auto_tiling_p = 0;
  1550.  
  1551. /* Tile all of the visible windows. */
  1552. DECLARE_INFO_COMMAND (info_tile_windows,
  1553.     "Divide the available screen space among the visible windows")
  1554. {
  1555.   window_tile_windows (TILE_INTERNALS);
  1556. }
  1557.  
  1558. /* Toggle the state of this window's wrapping of lines. */
  1559. DECLARE_INFO_COMMAND (info_toggle_wrap,
  1560.           "Toggle the state of line wrapping in the current window")
  1561. {
  1562.   window_toggle_wrap (window);
  1563. }
  1564.  
  1565. /* **************************************************************** */
  1566. /*                                    */
  1567. /*            Info Node Commands                */
  1568. /*                                    */
  1569. /* **************************************************************** */
  1570.  
  1571. /* Using WINDOW for various defaults, select the node referenced by ENTRY
  1572.    in it.  If the node is selected, the window and node are remembered. */
  1573. void
  1574. info_select_reference (window, entry)
  1575.      WINDOW *window;
  1576.      REFERENCE *entry;
  1577. {
  1578.   NODE *node;
  1579.   char *filename, *nodename, *file_system_error;
  1580.  
  1581.   file_system_error = (char *)NULL;
  1582.  
  1583.   filename = entry->filename;
  1584.   if (!filename)
  1585.     filename = window->node->parent;
  1586.   if (!filename)
  1587.     filename = window->node->filename;
  1588.  
  1589.   if (filename)
  1590.     filename = savestring (filename);
  1591.  
  1592.   if (entry->nodename)
  1593.     nodename = savestring (entry->nodename);
  1594.   else
  1595.     nodename = savestring ("Top");
  1596.  
  1597.   node = info_get_node (filename, nodename);
  1598.  
  1599.   /* Try something a little weird.  If the node couldn't be found, and the
  1600.      reference was of the form "foo::", see if the entry->label can be found
  1601.      as a file, with a node of "Top". */
  1602.   if (!node)
  1603.     {
  1604.       if (info_recent_file_error)
  1605.     file_system_error = savestring (info_recent_file_error);
  1606.  
  1607.       if (entry->nodename && (strcmp (entry->nodename, entry->label) == 0))
  1608.     {
  1609.       node = info_get_node (entry->label, "Top");
  1610.       if (!node && info_recent_file_error)
  1611.         {
  1612.           maybe_free (file_system_error);
  1613.           file_system_error = savestring (info_recent_file_error);
  1614.         }
  1615.     }
  1616.     }
  1617.  
  1618.   if (!node)
  1619.     {
  1620.       if (file_system_error)
  1621.     info_error (file_system_error);
  1622.       else
  1623.     info_error (CANT_FIND_NODE, nodename);
  1624.     }
  1625.  
  1626.   maybe_free (file_system_error);
  1627.   maybe_free (filename);
  1628.   maybe_free (nodename);
  1629.  
  1630.   if (node)
  1631.     {
  1632.       set_remembered_pagetop_and_point (window);
  1633.       info_set_node_of_window (window, node);
  1634.     }
  1635. }
  1636.  
  1637. /* Parse the node specification in LINE using WINDOW to default the filename.
  1638.    Select the parsed node in WINDOW and remember it, or error if the node
  1639.    couldn't be found. */
  1640. static void
  1641. info_parse_and_select (line, window)
  1642.      char *line;
  1643.      WINDOW *window;
  1644. {
  1645.   REFERENCE entry;
  1646.  
  1647.   info_parse_node (line, DONT_SKIP_NEWLINES);
  1648.  
  1649.   entry.nodename = info_parsed_nodename;
  1650.   entry.filename = info_parsed_filename;
  1651.   entry.label = "*info-parse-and-select*";
  1652.  
  1653.   info_select_reference (window, &entry);
  1654. }
  1655.  
  1656. /* Given that the values of INFO_PARSED_FILENAME and INFO_PARSED_NODENAME
  1657.    are previously filled, try to get the node represented by them into
  1658.    WINDOW.  The node should have been pointed to by the LABEL pointer of
  1659.    WINDOW->node. */
  1660. static void
  1661. info_handle_pointer (label, window)
  1662.      char *label;
  1663.      WINDOW *window;
  1664. {
  1665.   if (info_parsed_filename || info_parsed_nodename)
  1666.     {
  1667.       char *filename, *nodename;
  1668.       NODE *node;
  1669.  
  1670.       filename = nodename = (char *)NULL;
  1671.  
  1672.       if (info_parsed_filename)
  1673.     filename = savestring (info_parsed_filename);
  1674.       else
  1675.     {
  1676.       if (window->node->parent)
  1677.         filename = savestring (window->node->parent);
  1678.       else if (window->node->filename)
  1679.         filename = savestring (window->node->filename);
  1680.     }
  1681.  
  1682.       if (info_parsed_nodename)
  1683.     nodename = savestring (info_parsed_nodename);
  1684.       else
  1685.     nodename = savestring ("Top");
  1686.  
  1687.       node = info_get_node (filename, nodename);
  1688.  
  1689.       if (node)
  1690.     {
  1691.       INFO_WINDOW *info_win;
  1692.  
  1693.       info_win = get_info_window_of_window (window);
  1694.       if (info_win)
  1695.         {
  1696.           info_win->pagetops[info_win->current] = window->pagetop;
  1697.           info_win->points[info_win->current] = window->point;
  1698.         }
  1699.       set_remembered_pagetop_and_point (window);
  1700.       info_set_node_of_window (window, node);
  1701.     }
  1702.       else
  1703.     {
  1704.       if (info_recent_file_error)
  1705.         info_error (info_recent_file_error);
  1706.       else
  1707.         info_error (CANT_FILE_NODE, filename, nodename);
  1708.     }
  1709.  
  1710.       free (filename);
  1711.       free (nodename);
  1712.     }
  1713.   else
  1714.     {
  1715.       info_error (NO_POINTER, label);
  1716.     }
  1717. }
  1718.  
  1719. /* Make WINDOW display the "Next:" node of the node currently being
  1720.    displayed. */
  1721. DECLARE_INFO_COMMAND (info_next_node, "Select the `Next' node")
  1722. {
  1723.   info_next_label_of_node (window->node);
  1724.   info_handle_pointer ("Next", window);
  1725. }
  1726.  
  1727. /* Make WINDOW display the "Prev:" node of the node currently being
  1728.    displayed. */
  1729. DECLARE_INFO_COMMAND (info_prev_node, "Select the `Prev' node")
  1730. {
  1731.   info_prev_label_of_node (window->node);
  1732.   info_handle_pointer ("Prev", window);
  1733. }
  1734.  
  1735. /* Make WINDOW display the "Up:" node of the node currently being
  1736.    displayed. */
  1737. DECLARE_INFO_COMMAND (info_up_node, "Select the `Up' node")
  1738. {
  1739.   info_up_label_of_node (window->node);
  1740.   info_handle_pointer ("Up", window);
  1741. }
  1742.  
  1743. /* Make WINDOW display the last node of this info file. */
  1744. DECLARE_INFO_COMMAND (info_last_node, "Select the last node in this file")
  1745. {
  1746.   register int i;
  1747.   FILE_BUFFER *fb = file_buffer_of_window (window);
  1748.   NODE *node = (NODE *)NULL;
  1749.  
  1750.   if (fb && fb->tags)
  1751.     {
  1752.       for (i = 0; fb->tags[i]; i++);
  1753.       node = info_get_node (fb->filename, fb->tags[i - 1]->nodename);
  1754.     }
  1755.  
  1756.   if (!node)
  1757.     info_error ("This window has no additional nodes");
  1758.   else
  1759.     {
  1760.       set_remembered_pagetop_and_point (window);
  1761.       info_set_node_of_window (window, node);
  1762.     }
  1763. }
  1764.  
  1765. /* Make WINDOW display the first node of this info file. */
  1766. DECLARE_INFO_COMMAND (info_first_node, "Select the first node in this file")
  1767. {
  1768.   FILE_BUFFER *fb = file_buffer_of_window (window);
  1769.   NODE *node = (NODE *)NULL;
  1770.  
  1771.   if (fb && fb->tags)
  1772.     node = info_get_node (fb->filename, fb->tags[0]->nodename);
  1773.  
  1774.   if (!node)
  1775.     info_error ("This window has no additional nodes");
  1776.   else
  1777.     {
  1778.       set_remembered_pagetop_and_point (window);
  1779.       info_set_node_of_window (window, node);
  1780.     }
  1781. }
  1782.  
  1783. /* Make WINDOW display the previous node displayed in this window. */
  1784. DECLARE_INFO_COMMAND (info_history_node,
  1785.               "Select the most recently selected node")
  1786. {
  1787.   INFO_WINDOW *info_win;
  1788.  
  1789.   /* Find the INFO_WINDOW which contains WINDOW. */
  1790.   info_win = get_info_window_of_window (window);
  1791.  
  1792.   if (!info_win)
  1793.     {
  1794.       info_error ("Requested window is not present!");
  1795.       return;
  1796.     }
  1797.  
  1798.   set_remembered_pagetop_and_point (window);
  1799.   if (!info_win->current)
  1800.     {
  1801.       if (info_win->nodes_index > 1)
  1802.     {
  1803.       window_message_in_echo_area
  1804.         ("Now wrapped around to beginning of history.");
  1805.       info_win->current = info_win->nodes_index;
  1806.     }
  1807.       else
  1808.     {
  1809.       info_error ("No earlier nodes in this window.");
  1810.       return;
  1811.     }
  1812.     }
  1813.  
  1814.   info_win->current--;
  1815.   window_set_node_of_window (window, info_win->nodes[info_win->current]);
  1816.   window->pagetop = info_win->pagetops[info_win->current];
  1817.   window->point   = info_win->points[info_win->current];
  1818.   window->flags |= W_UpdateWindow;
  1819.   if (auto_footnotes_p)
  1820.     info_get_or_remove_footnotes (window);
  1821. }
  1822.  
  1823. /* Select the last menu item in WINDOW->node. */
  1824. DECLARE_INFO_COMMAND (info_last_menu_item,
  1825.    "Select the last item in this node's menu")
  1826. {
  1827.   info_menu_digit (window, 1, '0');
  1828. }
  1829.  
  1830. /* Use KEY (a digit) to select the Nth menu item in WINDOW->node. */
  1831. DECLARE_INFO_COMMAND (info_menu_digit, "Select this menu item")
  1832. {
  1833.   register int i, item;
  1834.   register REFERENCE *entry, **menu;
  1835.  
  1836.   menu = info_menu_of_node (window->node);
  1837.  
  1838.   if (!menu)
  1839.     {
  1840.       info_error (NO_MENU_NODE);
  1841.       return;
  1842.     }
  1843.  
  1844.   /* We have the menu.  See if there are this many items in it. */
  1845.   item = key - '0';
  1846.  
  1847.   /* Special case.  Item "0" is the last item in this menu. */
  1848.   if (item == 0)
  1849.     for (i = 0; menu[i + 1]; i++);
  1850.   else
  1851.     {
  1852.       for (i = 0; entry = menu[i]; i++)
  1853.     if (i == item - 1)
  1854.       break;
  1855.     }
  1856.  
  1857.   if (menu[i])
  1858.     info_select_reference (window, menu[i]);
  1859.   else
  1860.     info_error ("There aren't %d items in this menu.", item);
  1861.  
  1862.   info_free_references (menu);
  1863.   return;
  1864. }
  1865.  
  1866. /* Read a menu or followed reference from the user defaulting to the
  1867.    reference found on the current line, and select that node.  The
  1868.    reading is done with completion.  BUILDER is the function used
  1869.    to build the list of references.  ASK_P is non-zero if the user
  1870.    should be prompted, or zero to select the default item. */
  1871. static void
  1872. info_menu_or_ref_item (window, count, key, builder, ask_p)
  1873.      WINDOW *window;
  1874.      int count;
  1875.      unsigned char key;
  1876.      REFERENCE **(*builder) ();
  1877.      int ask_p;
  1878. {
  1879.   REFERENCE **menu, *entry, *defentry = (REFERENCE *)NULL;
  1880.   char *line;
  1881.  
  1882.   menu = (*builder) (window->node);
  1883.  
  1884.   if (!menu)
  1885.     {
  1886.       if (builder == info_menu_of_node)
  1887.     info_error (NO_MENU_NODE);
  1888.       else
  1889.     info_error (NO_XREF_NODE);
  1890.       return;
  1891.     }
  1892.  
  1893.   /* Default the selected reference to the one which is on the line that
  1894.      point is in.  */
  1895.   {
  1896.     REFERENCE **refs = (REFERENCE **)NULL;
  1897.     int point_line;
  1898.  
  1899.     point_line = window_line_of_point (window);
  1900.  
  1901.     if (point_line != -1)
  1902.       {
  1903.     SEARCH_BINDING binding;
  1904.  
  1905.     binding.start = 0;
  1906.     binding.buffer = window->line_starts[point_line];
  1907.     if (window->line_starts[point_line + 1])
  1908.       binding.end = window->line_starts[point_line + 1] - binding.buffer;
  1909.     else
  1910.       binding.end =
  1911.         (window->node->contents + window->node->nodelen) - binding.buffer;
  1912.     binding.flags = 0;
  1913.  
  1914.     if (builder == info_menu_of_node)
  1915.       {
  1916.         if (point_line)
  1917.           {
  1918.         binding.buffer--;
  1919.         binding.end++;
  1920.  
  1921.         refs = info_menu_items (&binding);
  1922.           }
  1923.       }
  1924.     else
  1925.       refs = info_xrefs (&binding);
  1926.  
  1927.     if (refs)
  1928.       {
  1929.         if ((strcmp (refs[0]->label, "Menu") != 0) ||
  1930.         (builder == info_xrefs_of_node))
  1931.           {
  1932.         defentry = (REFERENCE *)xmalloc (sizeof (REFERENCE));
  1933.         defentry->label = savestring (refs[0]->label);
  1934.         defentry->filename = refs[0]->filename;
  1935.         defentry->nodename = refs[0]->nodename;
  1936.  
  1937.         if (defentry->filename)
  1938.           defentry->filename = savestring (defentry->filename);
  1939.         if (defentry->nodename)
  1940.           defentry->nodename = savestring (defentry->nodename);
  1941.           }
  1942.         info_free_references (refs);
  1943.       }
  1944.       }
  1945.   }
  1946.  
  1947.   /* If we are going to ask the user a question, do it now. */
  1948.   if (ask_p)
  1949.     {
  1950.       char *prompt;
  1951.  
  1952.       /* Build the prompt string. */
  1953.       if (defentry)
  1954.     prompt = (char *)xmalloc (20 + strlen (defentry->label));
  1955.       else
  1956.     prompt = (char *)xmalloc (20);
  1957.  
  1958.       if (builder == info_menu_of_node)
  1959.     {
  1960.       if (defentry)
  1961.         sprintf (prompt, "Menu item (%s): ", defentry->label);
  1962.       else
  1963.         sprintf (prompt, "Menu item: ");
  1964.     }
  1965.       else
  1966.     {
  1967.       if (defentry)
  1968.         sprintf (prompt, "Follow xref (%s): ", defentry->label);
  1969.       else
  1970.         sprintf (prompt, "Follow xref: ");
  1971.     }
  1972.  
  1973.       line = info_read_completing_in_echo_area (window, prompt, menu);
  1974.       free (prompt);
  1975.  
  1976.       window = active_window;
  1977.  
  1978.       /* User aborts, just quit. */
  1979.       if (!line)
  1980.     {
  1981.       maybe_free (defentry);
  1982.       info_free_references (menu);
  1983.       info_abort_key (window, 0, 0);
  1984.       return;
  1985.     }
  1986.  
  1987.       /* If we had a default and the user accepted it, use that. */
  1988.       if (!*line)
  1989.     {
  1990.       free (line);
  1991.       if (defentry)
  1992.         line = savestring (defentry->label);
  1993.       else
  1994.         line = (char *)NULL;
  1995.     }
  1996.     }
  1997.   else
  1998.     {
  1999.       /* Not going to ask any questions.  If we have a default entry, use
  2000.      that, otherwise return. */
  2001.       if (!defentry)
  2002.     return;
  2003.       else
  2004.     line = savestring (defentry->label);
  2005.     }
  2006.  
  2007.   if (line)
  2008.     {
  2009.       /* Find the selected label in the references. */
  2010.       entry = info_get_labeled_reference (line, menu);
  2011.  
  2012.       if (!entry && defentry)
  2013.     info_error ("The reference disappeared! (%s).", line);
  2014.       else
  2015.     {
  2016.       NODE *orig;
  2017.  
  2018.       orig = window->node;
  2019.       info_select_reference (window, entry);
  2020.       if ((builder == info_xrefs_of_node) && (window->node != orig))
  2021.         {
  2022.           long offset;
  2023.           long start;
  2024.  
  2025.           if (window->line_count > 0)
  2026.         start = window->line_starts[1] - window->node->contents;
  2027.           else
  2028.         start = 0;
  2029.  
  2030.           offset =
  2031.         info_target_search_node (window->node, entry->label, start);
  2032.  
  2033.           if (offset != -1)
  2034.         {
  2035.           window->point = offset;
  2036.           window_adjust_pagetop (window);
  2037.         }
  2038.         }
  2039.     }
  2040.  
  2041.       free (line);
  2042.       if (defentry)
  2043.     {
  2044.       free (defentry->label);
  2045.       maybe_free (defentry->filename);
  2046.       maybe_free (defentry->nodename);
  2047.       free (defentry);
  2048.     }
  2049.     }
  2050.  
  2051.   info_free_references (menu);
  2052.  
  2053.   if (!info_error_was_printed)
  2054.     window_clear_echo_area ();
  2055. }
  2056.  
  2057. /* Read a line (with completion) which is the name of a menu item,
  2058.    and select that item. */
  2059. DECLARE_INFO_COMMAND (info_menu_item, "Read a menu item and select its node")
  2060. {
  2061.   info_menu_or_ref_item (window, count, key, info_menu_of_node, 1);
  2062. }
  2063.  
  2064. /* Read a line (with completion) which is the name of a reference to
  2065.    follow, and select the node. */
  2066. DECLARE_INFO_COMMAND
  2067.   (info_xref_item, "Read a footnote or cross reference and select its node")
  2068. {
  2069.   info_menu_or_ref_item (window, count, key, info_xrefs_of_node, 1);
  2070. }
  2071.  
  2072. /* Position the cursor at the start of this node's menu. */
  2073. DECLARE_INFO_COMMAND (info_find_menu, "Move to the start of this node's menu")
  2074. {
  2075.   SEARCH_BINDING binding;
  2076.   long position;
  2077.  
  2078.   binding.buffer = window->node->contents;
  2079.   binding.start  = 0;
  2080.   binding.end = window->node->nodelen;
  2081.   binding.flags = S_FoldCase | S_SkipDest;
  2082.  
  2083.   position = search (INFO_MENU_LABEL, &binding);
  2084.  
  2085.   if (position == -1)
  2086.     info_error (NO_MENU_NODE);
  2087.   else
  2088.     {
  2089.       window->point = position;
  2090.       window_adjust_pagetop (window);
  2091.       window->flags |= W_UpdateWindow;
  2092.     }
  2093. }
  2094.  
  2095. /* Visit as many menu items as is possible, each in a separate window. */
  2096. DECLARE_INFO_COMMAND (info_visit_menu,
  2097.   "Visit as many menu items at once as possible")
  2098. {
  2099.   register int i;
  2100.   REFERENCE *entry, **menu;
  2101.  
  2102.   menu = info_menu_of_node (window->node);
  2103.  
  2104.   if (!menu)
  2105.     info_error (NO_MENU_NODE);
  2106.  
  2107.   for (i = 0; (!info_error_was_printed) && (entry = menu[i]); i++)
  2108.     {
  2109.       WINDOW *new;
  2110.  
  2111.       new = window_make_window (window->node);
  2112.       window_tile_windows (TILE_INTERNALS);
  2113.  
  2114.       if (!new)
  2115.     info_error (WIN_TOO_SMALL);
  2116.       else
  2117.     {
  2118.       active_window = new;
  2119.       info_select_reference (new, entry);
  2120.     }
  2121.     }
  2122. }
  2123.  
  2124. /* Read a line of input which is a node name, and go to that node. */
  2125. DECLARE_INFO_COMMAND (info_goto_node, "Read a node name and select it")
  2126. {
  2127.   char *line;
  2128.   NODE *node;
  2129.  
  2130. #define GOTO_COMPLETES
  2131. #if defined (GOTO_COMPLETES)
  2132.   /* Build a completion list of all of the known nodes. */
  2133.   {
  2134.     register int fbi, i;
  2135.     FILE_BUFFER *current;
  2136.     REFERENCE **items = (REFERENCE **)NULL;
  2137.     int items_index = 0;
  2138.     int items_slots = 0;
  2139.  
  2140.     current = file_buffer_of_window (window);
  2141.  
  2142.     for (fbi = 0; info_loaded_files && info_loaded_files[fbi]; fbi++)
  2143.       {
  2144.     FILE_BUFFER *fb;
  2145.     REFERENCE *entry;
  2146.     int this_is_the_current_fb;
  2147.  
  2148.     fb = info_loaded_files[fbi];
  2149.     this_is_the_current_fb = (current == fb);
  2150.  
  2151.     entry = (REFERENCE *)xmalloc (sizeof (REFERENCE));
  2152.     entry->filename = entry->nodename = (char *)NULL;
  2153.     entry->label = (char *)xmalloc (4 + strlen (fb->filename));
  2154.     sprintf (entry->label, "(%s)*", fb->filename);
  2155.  
  2156.     add_pointer_to_array
  2157.       (entry, items_index, items, items_slots, 10, REFERENCE *);
  2158.  
  2159.     if (fb->tags)
  2160.       {
  2161.         for (i = 0; fb->tags[i]; i++)
  2162.           {
  2163.         entry = (REFERENCE *)xmalloc (sizeof (REFERENCE));
  2164.         entry->filename = entry->nodename = (char *)NULL;
  2165.         entry->label = (char *) xmalloc
  2166.           (4 + strlen (fb->filename) + strlen (fb->tags[i]->nodename));
  2167.         sprintf (entry->label, "(%s)%s",
  2168.              fb->filename, fb->tags[i]->nodename);
  2169.  
  2170.         add_pointer_to_array
  2171.           (entry, items_index, items, items_slots, 100, REFERENCE *);
  2172.           }        
  2173.  
  2174.         if (this_is_the_current_fb)
  2175.           {
  2176.         for (i = 0; fb->tags[i]; i++)
  2177.           {
  2178.             entry = (REFERENCE *)xmalloc (sizeof (REFERENCE));
  2179.             entry->filename = entry->nodename = (char *)NULL;
  2180.             entry->label = savestring (fb->tags[i]->nodename);
  2181.             add_pointer_to_array (entry, items_index, items,
  2182.                       items_slots, 100, REFERENCE *);
  2183.           }
  2184.           }
  2185.       }
  2186.       }
  2187.     line = info_read_maybe_completing (window, "Goto Node: ", items);
  2188.     info_free_references (items);
  2189.   }
  2190. #else /* !GOTO_COMPLETES */
  2191.   line = info_read_in_echo_area (window, "Goto Node: ");
  2192. #endif /* !GOTO_COMPLETES */
  2193.  
  2194.   /* If the user aborted, quit now. */
  2195.   if (!line)
  2196.     {
  2197.       info_abort_key (window, 0, 0);
  2198.       return;
  2199.     }
  2200.  
  2201.   canonicalize_whitespace (line);
  2202.  
  2203.   if (*line)
  2204.     info_parse_and_select (line, window);
  2205.  
  2206.   free (line);
  2207.   if (!info_error_was_printed)
  2208.     window_clear_echo_area ();
  2209. }
  2210.  
  2211. /* Move to the "Top" node in this file. */
  2212. DECLARE_INFO_COMMAND (info_top_node, "Select the node `Top' in this file")
  2213. {
  2214.   info_parse_and_select ("Top", window);
  2215. }
  2216.  
  2217. /* Move to the node "(dir)Top". */
  2218. DECLARE_INFO_COMMAND (info_dir_node, "Select the node `(dir)'")
  2219. {
  2220.   info_parse_and_select ("(dir)Top", window);
  2221. }
  2222.  
  2223. /* Try to delete the current node appearing in this window, showing the most
  2224.    recently selected node in this window. */
  2225. DECLARE_INFO_COMMAND (info_kill_node, "Kill this node")
  2226. {
  2227.   register int iw, i;
  2228.   register INFO_WINDOW *info_win;
  2229.   char *nodename = (char *)NULL;
  2230.   NODE *temp = (NODE *)NULL;
  2231.  
  2232.   /* Read the name of a node to kill.  The list of available nodes comes
  2233.      from the nodes appearing in the current window configuration. */
  2234.   {
  2235.     REFERENCE **menu = (REFERENCE **)NULL;
  2236.     int menu_index = 0, menu_slots = 0;
  2237.     char *default_nodename, *prompt;
  2238.  
  2239.     for (iw = 0; info_win = info_windows[iw]; iw++)
  2240.       {
  2241.     REFERENCE *entry;
  2242.  
  2243.     entry = (REFERENCE *)xmalloc (sizeof (REFERENCE));
  2244.     entry->label = savestring (info_win->window->node->nodename);
  2245.     entry->filename = entry->nodename = (char *)NULL;
  2246.  
  2247.     add_pointer_to_array
  2248.       (entry, menu_index, menu, menu_slots, 10, REFERENCE *);
  2249.       }
  2250.  
  2251.     default_nodename = savestring (active_window->node->nodename);
  2252.     prompt = (char *)xmalloc (40 + strlen (default_nodename));
  2253.     sprintf (prompt, "Kill node (%s): ", default_nodename);
  2254.  
  2255.     nodename = info_read_completing_in_echo_area (window, prompt, menu);
  2256.     free (prompt);
  2257.     info_free_references (menu);
  2258.     if (nodename && !*nodename)
  2259.       {
  2260.     free (nodename);
  2261.     nodename = default_nodename;
  2262.       }
  2263.     else
  2264.       free (default_nodename);
  2265.   }
  2266.  
  2267.   /* If there is no nodename to kill, quit now. */
  2268.   if (!nodename)
  2269.     {
  2270.       info_abort_key (window, 0, 0);
  2271.       return;
  2272.     }
  2273.  
  2274.   /* If there is a nodename, find it in our window list. */
  2275.   for (iw = 0; info_win = info_windows[iw]; iw++)
  2276.     if (strcmp (nodename, info_win->nodes[info_win->current]->nodename) == 0)
  2277.       break;
  2278.  
  2279.   if (!info_win)
  2280.     {
  2281.       if (*nodename)
  2282.     info_error ("Cannot kill the node `%s'", nodename);
  2283.       else
  2284.     window_clear_echo_area ();
  2285.  
  2286.       return;
  2287.     }
  2288.  
  2289.   /* If there are no more nodes left anywhere to view, complain and exit. */
  2290.   if (info_windows_index == 1 && info_windows[0]->nodes_index == 1)
  2291.     {
  2292.       info_error ("Cannot kill the last node");
  2293.       return;
  2294.     }
  2295.  
  2296.   /* INFO_WIN contains the node that the user wants to stop viewing.
  2297.      Delete this node from the list of nodes previously shown in this
  2298.      window. */
  2299.   for (i = info_win->current; i < info_win->nodes_index; i++)
  2300.     info_win->nodes[i] = info_win->nodes[i++];
  2301.  
  2302.   /* There is one less node in this window's history list. */
  2303.   info_win->nodes_index--;
  2304.  
  2305.   /* Make this window show the most recent history node. */
  2306.   info_win->current = info_win->nodes_index - 1;
  2307.  
  2308.   /* If there aren't any nodes left in this window, steal one from the
  2309.      next window. */
  2310.   if (info_win->current < 0)
  2311.     {
  2312.       INFO_WINDOW *stealer;
  2313.       int which, pagetop;
  2314.       long point;
  2315.  
  2316.       if (info_windows[iw + 1])
  2317.     stealer = info_windows[iw + 1];
  2318.       else
  2319.     stealer = info_windows[0];
  2320.  
  2321.       /* If the node being displayed in the next window is not the most
  2322.      recently loaded one, get the most recently loaded one. */
  2323.       if ((stealer->nodes_index - 1) != stealer->current)
  2324.     which = stealer->nodes_index - 1;
  2325.  
  2326.       /* Else, if there is another node behind the stealers current node,
  2327.      use that one. */
  2328.       else if (stealer->current > 0)
  2329.     which = stealer->current - 1;
  2330.  
  2331.       /* Else, just use the node appearing in STEALER's window. */
  2332.       else
  2333.     which = stealer->current;
  2334.  
  2335.       /* Copy this node. */
  2336.       {
  2337.     NODE *copy;
  2338.  
  2339.     temp = stealer->nodes[which];
  2340.     point = stealer->points[which];
  2341.     pagetop = stealer->pagetops[which];
  2342.  
  2343.     copy = (NODE *)xmalloc (sizeof (NODE));
  2344.     copy->filename = temp->filename;
  2345.     copy->parent = temp->parent;
  2346.     copy->nodename = temp->nodename;
  2347.     copy->contents = temp->contents;
  2348.     copy->nodelen = temp->nodelen;
  2349.     copy->flags = temp->flags;
  2350.  
  2351.     temp = copy;
  2352.       }
  2353.  
  2354.       window_set_node_of_window (info_win->window, temp);
  2355.       window->point = point;
  2356.       window->pagetop = pagetop;
  2357.       remember_window_and_node (info_win->window, temp);
  2358.     }
  2359.   else
  2360.     {
  2361.       temp = info_win->nodes[info_win->current];
  2362.       window_set_node_of_window (info_win->window, temp);
  2363.     }
  2364.   if (!info_error_was_printed)
  2365.     window_clear_echo_area ();
  2366. }
  2367.  
  2368. /* Read the name of a file and select the entire file. */
  2369. DECLARE_INFO_COMMAND (info_view_file, "Read the name of a file and select it")
  2370. {
  2371.   char *line;
  2372.  
  2373.   line = info_read_in_echo_area (window, "Find file: ");
  2374.   if (!line)
  2375.     {
  2376.       info_abort_key (active_window, 1, 0);
  2377.       return;
  2378.     }
  2379.  
  2380.   if (*line)
  2381.     {
  2382.       NODE *node;
  2383.  
  2384.       node = info_get_node (line, "*");
  2385.       if (!node)
  2386.     {
  2387.       if (info_recent_file_error)
  2388.         info_error (info_recent_file_error);
  2389.       else
  2390.         info_error ("Cannot find \"%s\".", line);
  2391.     }
  2392.       else
  2393.     {
  2394.       set_remembered_pagetop_and_point (active_window);
  2395.       info_set_node_of_window (window, node);
  2396.     }
  2397.       free (line);
  2398.     }
  2399.  
  2400.   if (!info_error_was_printed)
  2401.     window_clear_echo_area ();
  2402. }
  2403.  
  2404. /* **************************************************************** */
  2405. /*                                    */
  2406. /*           Dumping and Printing Nodes                */
  2407. /*                                    */
  2408. /* **************************************************************** */
  2409.  
  2410. #define VERBOSE_NODE_DUMPING
  2411. static void write_node_to_stream ();
  2412. static void dump_node_to_stream ();
  2413. static void initialize_dumping ();
  2414.  
  2415. /* Dump the nodes specified by FILENAME and NODENAMES to the file named
  2416.    in OUTPUT_FILENAME.  If DUMP_SUBNODES is non-zero, recursively dump
  2417.    the nodes which appear in the menu of each node dumped. */
  2418. void
  2419. dump_nodes_to_file (filename, nodenames, output_filename, dump_subnodes)
  2420.      char *filename;
  2421.      char **nodenames;
  2422.      char *output_filename;
  2423.      int dump_subnodes;
  2424. {
  2425.   register int i;
  2426.   FILE *output_stream;
  2427.  
  2428.   /* Get the stream to print the nodes to.  Special case of an output
  2429.      filename of "-" means to dump the nodes to stdout. */
  2430.   if (strcmp (output_filename, "-") == 0)
  2431.     output_stream = stdout;
  2432.   else
  2433.     output_stream = fopen (output_filename, "w");
  2434.  
  2435.   if (!output_stream)
  2436.     {
  2437.       info_error ("Could not create output file \"%s\".", output_filename);
  2438.       return;
  2439.     }
  2440.  
  2441.   /* Print each node to stream. */
  2442.   initialize_dumping ();
  2443.   for (i = 0; nodenames[i]; i++)
  2444.     dump_node_to_stream (filename, nodenames[i], output_stream, dump_subnodes);
  2445.  
  2446.   if (output_stream != stdout)
  2447.     fclose (output_stream);
  2448.  
  2449. #if defined (VERBOSE_NODE_DUMPING)
  2450.   info_error ("Done.");
  2451. #endif /* VERBOSE_NODE_DUMPING */
  2452. }
  2453.  
  2454. /* A place to remember already dumped nodes. */
  2455. static char **dumped_already = (char **)NULL;
  2456. static int dumped_already_index = 0;
  2457. static int dumped_already_slots = 0;
  2458.  
  2459. static void
  2460. initialize_dumping ()
  2461. {
  2462.   dumped_already_index = 0;
  2463. }
  2464.  
  2465. /* Get and print the node specified by FILENAME and NODENAME to STREAM.
  2466.    If DUMP_SUBNODES is non-zero, recursively dump the nodes which appear
  2467.    in the menu of each node dumped. */
  2468. static void
  2469. dump_node_to_stream (filename, nodename, stream, dump_subnodes)
  2470.      char *filename, *nodename;
  2471.      FILE *stream;
  2472.      int dump_subnodes;
  2473. {
  2474.   register int i;
  2475.   NODE *node;
  2476.  
  2477.   node = info_get_node (filename, nodename);
  2478.  
  2479.   if (!node)
  2480.     {
  2481.       if (info_recent_file_error)
  2482.     info_error (info_recent_file_error);
  2483.       else
  2484.     {
  2485.       if (filename && *nodename != '(')
  2486.         info_error
  2487.           (CANT_FILE_NODE, filename_non_directory (filename), nodename);
  2488.       else
  2489.         info_error (CANT_FIND_NODE, nodename);
  2490.     }
  2491.       return;
  2492.     }
  2493.  
  2494.   /* If we have already dumped this node, don't dump it again. */
  2495.   for (i = 0; i < dumped_already_index; i++)
  2496.     if (strcmp (node->nodename, dumped_already[i]) == 0)
  2497.       {
  2498.     free (node);
  2499.     return;
  2500.       }
  2501.   add_pointer_to_array (node->nodename, dumped_already_index, dumped_already,
  2502.             dumped_already_slots, 50, char *);
  2503.  
  2504. #if defined (VERBOSE_NODE_DUMPING)
  2505.   /* Maybe we should print some information about the node being output. */
  2506.   if (node->filename)
  2507.     info_error ("Writing node \"(%s)%s\"...",
  2508.         filename_non_directory (node->filename), node->nodename);
  2509.   else
  2510.     info_error ("Writing node \"%s\"...", node->nodename);
  2511. #endif /* VERBOSE_NODE_DUMPING */
  2512.  
  2513.   write_node_to_stream (node, stream);
  2514.  
  2515.   /* If we are dumping subnodes, get the list of menu items in this node,
  2516.      and dump each one recursively. */
  2517.   if (dump_subnodes)
  2518.     {
  2519.       REFERENCE **menu = (REFERENCE **)NULL;
  2520.  
  2521.       /* If this node is an Index, do not dump the menu references. */
  2522.       if (string_in_line ("Index", node->nodename) == -1)
  2523.     menu = info_menu_of_node (node);
  2524.  
  2525.       if (menu)
  2526.     {
  2527.       for (i = 0; menu[i]; i++)
  2528.         {
  2529.           /* We don't dump Info files which are different than the
  2530.          current one. */
  2531.           if (!menu[i]->filename)
  2532.         dump_node_to_stream
  2533.           (filename, menu[i]->nodename, stream, dump_subnodes);
  2534.         }
  2535.       info_free_references (menu);
  2536.     }
  2537.     }
  2538.  
  2539.   free (node);
  2540. }
  2541.  
  2542. /* Dump NODE to FILENAME.  If DUMP_SUBNODES is non-zero, recursively dump
  2543.    the nodes which appear in the menu of each node dumped. */
  2544. void
  2545. dump_node_to_file (node, filename, dump_subnodes)
  2546.      NODE *node;
  2547.      char *filename;
  2548.      int dump_subnodes;
  2549. {
  2550.   FILE *output_stream;
  2551.   char *nodes_filename;
  2552.  
  2553.   /* Get the stream to print this node to.  Special case of an output
  2554.      filename of "-" means to dump the nodes to stdout. */
  2555.   if (strcmp (filename, "-") == 0)
  2556.     output_stream = stdout;
  2557.   else
  2558.     output_stream = fopen (filename, "w");
  2559.  
  2560.   if (!output_stream)
  2561.     {
  2562.       info_error ("Could not create output file \"%s\".", filename);
  2563.       return;
  2564.     }
  2565.  
  2566.   if (node->parent)
  2567.     nodes_filename = node->parent;
  2568.   else
  2569.     nodes_filename = node->filename;
  2570.  
  2571.   initialize_dumping ();
  2572.   dump_node_to_stream
  2573.     (nodes_filename, node->nodename, output_stream, dump_subnodes);
  2574.  
  2575.   if (output_stream != stdout)
  2576.     fclose (output_stream);
  2577.  
  2578. #if defined (VERBOSE_NODE_DUMPING)
  2579.   info_error ("Done.");
  2580. #endif /* VERBOSE_NODE_DUMPING */
  2581. }
  2582.  
  2583. #if !defined (DEFAULT_INFO_PRINT_COMMAND)
  2584. #  define DEFAULT_INFO_PRINT_COMMAND "lpr"
  2585. #endif /* !DEFAULT_INFO_PRINT_COMMAND */
  2586.  
  2587. DECLARE_INFO_COMMAND (info_print_node,
  2588.  "Pipe the contents of this node through INFO_PRINT_COMMAND")
  2589. {
  2590.   print_node (window->node);
  2591. }
  2592.  
  2593. /* Print NODE on a printer piping it into INFO_PRINT_COMMAND. */
  2594. void
  2595. print_node (node)
  2596.      NODE *node;
  2597. {
  2598.   char *print_command, *getenv ();
  2599.   FILE *printer_pipe;
  2600.  
  2601.   print_command = getenv ("INFO_PRINT_COMMAND");
  2602.  
  2603.   if (!print_command || !*print_command)
  2604.     print_command = DEFAULT_INFO_PRINT_COMMAND;
  2605.  
  2606.   printer_pipe = popen (print_command, "w");
  2607.  
  2608.   if (!printer_pipe)
  2609.     {
  2610.       info_error ("Cannot open pipe to \"%s\".", print_command);
  2611.       return;
  2612.     }
  2613.  
  2614. #if defined (VERBOSE_NODE_DUMPING)
  2615.   /* Maybe we should print some information about the node being output. */
  2616.   if (node->filename)
  2617.     info_error ("Printing node \"(%s)%s\"...",
  2618.         filename_non_directory (node->filename), node->nodename);
  2619.   else
  2620.     info_error ("Printing node \"%s\"...", node->nodename);
  2621. #endif /* VERBOSE_NODE_DUMPING */
  2622.  
  2623.   write_node_to_stream (node, printer_pipe);
  2624.   pclose (printer_pipe);
  2625.  
  2626. #if defined (VERBOSE_NODE_DUMPING)
  2627.   info_error ("Done.");
  2628. #endif /* VERBOSE_NODE_DUMPING */
  2629. }
  2630.  
  2631. static void
  2632. write_node_to_stream (node, stream)
  2633.      NODE *node;
  2634.      FILE *stream;
  2635. {
  2636.   fwrite (node->contents, 1, node->nodelen, stream);
  2637. }
  2638.  
  2639. /* **************************************************************** */
  2640. /*                                    */
  2641. /*              Info Searching Commands                */
  2642. /*                                    */
  2643. /* **************************************************************** */
  2644.  
  2645. /* Variable controlling the garbage collection of files briefly visited
  2646.    during searches.  Such files are normally gc'ed, unless they were
  2647.    compressed to begin with.  If this variable is non-zero, it says
  2648.    to gc even those file buffer contents which had to be uncompressed. */
  2649. int gc_compressed_files = 0;
  2650.  
  2651. static void info_gc_file_buffers ();
  2652.  
  2653. static char *search_string = (char *)NULL;
  2654. static int search_string_index = 0;
  2655. static int search_string_size = 0;
  2656. static int isearch_is_active = 0;
  2657.  
  2658. /* Return the file buffer which belongs to WINDOW's node. */
  2659. FILE_BUFFER *
  2660. file_buffer_of_window (window)
  2661.      WINDOW *window;
  2662. {
  2663.   /* If this window has no node, then it has no file buffer. */
  2664.   if (!window->node)
  2665.     return ((FILE_BUFFER *)NULL);
  2666.  
  2667.   if (window->node->parent)
  2668.     return (info_find_file (window->node->parent));
  2669.  
  2670.   if (window->node->filename)
  2671.     return (info_find_file (window->node->filename));
  2672.  
  2673.   return ((FILE_BUFFER *)NULL);
  2674. }
  2675.  
  2676. /* Search for STRING in NODE starting at START.  Return -1 if the string
  2677.    was not found, or the location of the string if it was.  If WINDOW is
  2678.    passed as non-null, set the window's node to be NODE, its point to be
  2679.    the found string, and readjust the window's pagetop.  Final argument
  2680.    DIR says which direction to search in.  If it is positive, search
  2681.    forward, else backwards. */
  2682. long
  2683. info_search_in_node (string, node, start, window, dir)
  2684.      char *string;
  2685.      NODE *node;
  2686.      long start;
  2687.      WINDOW *window;
  2688.      int dir;
  2689. {
  2690.   SEARCH_BINDING binding;
  2691.   long offset;
  2692.  
  2693.   binding.buffer = node->contents;
  2694.   binding.start = start;
  2695.   binding.end = node->nodelen;
  2696.   binding.flags = S_FoldCase;
  2697.  
  2698.   if (dir < 0)
  2699.     {
  2700.       binding.end = 0;
  2701.       binding.flags |= S_SkipDest;
  2702.     }
  2703.  
  2704.   if (binding.start < 0)
  2705.     return (-1);
  2706.  
  2707.   /* For incremental searches, we always wish to skip past the string. */
  2708.   if (isearch_is_active)
  2709.     binding.flags |= S_SkipDest;
  2710.  
  2711.   offset = search (string, &binding);
  2712.  
  2713.   if (offset != -1 && window)
  2714.     {
  2715.       set_remembered_pagetop_and_point (window);
  2716.       if (window->node != node)
  2717.     window_set_node_of_window (window, node);
  2718.       window->point = offset;
  2719.       window_adjust_pagetop (window);
  2720.     }
  2721.   return (offset);
  2722. }
  2723.  
  2724. /* Search NODE, looking for the largest possible match of STRING.  Start the
  2725.    search at START.  Return the absolute position of the match, or -1, if
  2726.    no part of the string could be found. */
  2727. long
  2728. info_target_search_node (node, string, start)
  2729.      NODE *node;
  2730.      char *string;
  2731.      long start;
  2732. {
  2733.   register int i;
  2734.   long offset;
  2735.   char *target;
  2736.  
  2737.   target = savestring (string);
  2738.   i = strlen (target);
  2739.  
  2740.   /* Try repeatedly searching for this string while removing words from
  2741.      the end of it. */
  2742.   while (i)
  2743.     {
  2744.       target[i] = '\0';
  2745.       offset = info_search_in_node (target, node, start, (WINDOW *)NULL, 1);
  2746.  
  2747.       if (offset != -1)
  2748.     break;
  2749.  
  2750.       /* Delete the last word from TARGET. */
  2751.       for (; i && (!whitespace (target[i]) && (target[i] != ',')); i--);
  2752.     }
  2753.   free (target);
  2754.   return (offset);
  2755. }
  2756.  
  2757. /* Search for STRING starting in WINDOW at point.  If the string is found
  2758.    in this node, set point to that position.  Otherwise, get the file buffer
  2759.    associated with WINDOW's node, and search through each node in that file.
  2760.    If the search fails, return non-zero, else zero.  Side-effect window
  2761.    leaving the node and point where the string was found current. */
  2762. static char *last_searched_for_string = (char *)NULL;
  2763. static int
  2764. info_search_internal (string, window, dir)
  2765.      char *string;
  2766.      WINDOW *window;
  2767.      int dir;
  2768. {
  2769.   register int i;
  2770.   FILE_BUFFER *file_buffer;
  2771.   char *initial_nodename;
  2772.   long ret, start = 0;
  2773.  
  2774.   file_buffer = file_buffer_of_window (window);
  2775.   initial_nodename = window->node->nodename;
  2776.  
  2777.   if ((info_last_executed_command == info_search) &&
  2778.       (last_searched_for_string) &&
  2779.       (strcmp (last_searched_for_string, string) == 0))
  2780.     {
  2781.       ret = info_search_in_node
  2782.     (string, window->node, window->point + dir, window, dir);
  2783.     }
  2784.   else
  2785.     {
  2786.       ret = info_search_in_node
  2787.     (string, window->node, window->point, window, dir);
  2788.     }
  2789.  
  2790.   maybe_free (last_searched_for_string);
  2791.   last_searched_for_string = savestring (string);
  2792.  
  2793.   if (ret != -1)
  2794.     {
  2795.       /* We won! */
  2796.       if (!echo_area_is_active && !isearch_is_active)
  2797.     window_clear_echo_area ();
  2798.       return (0);
  2799.     }
  2800.  
  2801.   /* The string wasn't found in the current node.  Search through the
  2802.      window's file buffer, iff the current node is not "*". */
  2803.   if (!file_buffer || (strcmp (initial_nodename, "*") == 0))
  2804.     return (-1);
  2805.  
  2806.   /* If this file has tags, search through every subfile, starting at
  2807.      this node's subfile and node.  Otherwise, search through the
  2808.      file's node list. */
  2809.   if (file_buffer->tags)
  2810.     {
  2811.       register int current_tag, number_of_tags;
  2812.       char *last_subfile;
  2813.       TAG *tag;
  2814.  
  2815.       /* Find number of tags and current tag. */
  2816.       last_subfile = (char *)NULL;
  2817.       for (i = 0; file_buffer->tags[i]; i++)
  2818.     if (strcmp (initial_nodename, file_buffer->tags[i]->nodename) == 0)
  2819.       {
  2820.         current_tag = i;
  2821.         last_subfile = file_buffer->tags[i]->filename;
  2822.       }
  2823.  
  2824.       number_of_tags = i;
  2825.  
  2826.       /* If there is no last_subfile, our tag wasn't found. */
  2827.       if (!last_subfile)
  2828.     return (-1);
  2829.  
  2830.       /* Search through subsequent nodes, wrapping around to the top
  2831.      of the info file until we find the string or return to this
  2832.      window's node and point. */
  2833.       while (1)
  2834.     {
  2835.       NODE *node;
  2836.  
  2837.       /* Allow C-g to quit the search, failing it if pressed. */
  2838.       return_if_control_g (-1);
  2839.  
  2840.       current_tag += dir;
  2841.  
  2842.       if (current_tag < 0)
  2843.         current_tag = number_of_tags - 1;
  2844.       else if (current_tag == number_of_tags)
  2845.         current_tag = 0;
  2846.  
  2847.       tag = file_buffer->tags[current_tag];
  2848.  
  2849.       if (!echo_area_is_active && (last_subfile != tag->filename))
  2850.         {
  2851.           window_message_in_echo_area
  2852.         ("Searching subfile \"%s\"...",
  2853.          filename_non_directory (tag->filename));
  2854.  
  2855.           last_subfile = tag->filename;
  2856.         }
  2857.  
  2858.       node = info_get_node (file_buffer->filename, tag->nodename);
  2859.  
  2860.       if (!node)
  2861.         {
  2862.           /* If not doing i-search... */
  2863.           if (!echo_area_is_active)
  2864.         {
  2865.           if (info_recent_file_error)
  2866.             info_error (info_recent_file_error);
  2867.           else
  2868.             info_error (CANT_FILE_NODE,
  2869.                 filename_non_directory (file_buffer->filename),
  2870.                 tag->nodename);
  2871.         }
  2872.           return (-1);
  2873.         }
  2874.  
  2875.       if (dir < 0)
  2876.         start = tag->nodelen;
  2877.  
  2878.       ret =
  2879.         info_search_in_node (string, node, start, window, dir);
  2880.  
  2881.       /* Did we find the string in this node? */
  2882.       if (ret != -1)
  2883.         {
  2884.           /* Yes!  We win. */
  2885.           remember_window_and_node (window, node);
  2886.           if (!echo_area_is_active)
  2887.         window_clear_echo_area ();
  2888.           return (0);
  2889.         }
  2890.  
  2891.       /* No.  Free this node, and make sure that we haven't passed
  2892.          our starting point. */
  2893.       free (node);
  2894.  
  2895.       if (strcmp (initial_nodename, tag->nodename) == 0)
  2896.         return (-1);
  2897.     }
  2898.     }
  2899.   return (-1);
  2900. }
  2901.  
  2902. DECLARE_INFO_COMMAND (info_search, "Read a string and search for it")
  2903. {
  2904.   char *line, *prompt;
  2905.   int result, old_pagetop;
  2906.   int direction;
  2907.  
  2908.   if (count < 0)
  2909.     direction = -1;
  2910.   else
  2911.     direction = 1;
  2912.  
  2913.   /* Read a string from the user, defaulting the search to SEARCH_STRING. */
  2914.   if (!search_string)
  2915.     {
  2916.       search_string = (char *)xmalloc (search_string_size = 100);
  2917.       search_string[0] = '\0';
  2918.     }
  2919.  
  2920.   prompt = (char *)xmalloc (50 + strlen (search_string));
  2921.  
  2922.   sprintf (prompt, "%s for string [%s]: ",
  2923.        direction < 0 ? "Search backward" : "Search",
  2924.        search_string);
  2925.  
  2926.   line = info_read_in_echo_area (window, prompt);
  2927.   free (prompt);
  2928.  
  2929.   if (!line)
  2930.     {
  2931.       info_abort_key ();
  2932.       return;
  2933.     }
  2934.  
  2935.   if (*line)
  2936.     {
  2937.       if (strlen (line) + 1 > search_string_size)
  2938.     search_string = (char *)
  2939.       xrealloc (search_string, (search_string_size += 50 + strlen (line)));
  2940.  
  2941.       strcpy (search_string, line);
  2942.       search_string_index = strlen (line);
  2943.       free (line);
  2944.     }
  2945.  
  2946.   old_pagetop = active_window->pagetop;
  2947.   result = info_search_internal (search_string, active_window, direction);
  2948.  
  2949.   if (result != 0 && !info_error_was_printed)
  2950.     info_error ("Search failed.");
  2951.   else if (old_pagetop != active_window->pagetop)
  2952.     {
  2953.       int new_pagetop;
  2954.  
  2955.       new_pagetop = active_window->pagetop;
  2956.       active_window->pagetop = old_pagetop;
  2957.       set_window_pagetop (active_window, new_pagetop);
  2958.       if (auto_footnotes_p)
  2959.     info_get_or_remove_footnotes (active_window);
  2960.     }
  2961.  
  2962.   /* Perhaps free the unreferenced file buffers that were searched, but
  2963.      not retained. */
  2964.   info_gc_file_buffers ();
  2965. }
  2966.  
  2967. /* **************************************************************** */
  2968. /*                                    */
  2969. /*            Incremental Searching                */
  2970. /*                                    */
  2971. /* **************************************************************** */
  2972.  
  2973. static void incremental_search ();
  2974.  
  2975. DECLARE_INFO_COMMAND (isearch_forward,
  2976.               "Search interactively for a string as you type it")
  2977. {
  2978.   incremental_search (window, count, key);
  2979. }
  2980.  
  2981. DECLARE_INFO_COMMAND (isearch_backward,
  2982.               "Search interactively for a string as you type it")
  2983. {
  2984.   incremental_search (window, -count, key);
  2985. }
  2986.  
  2987. /* Incrementally search for a string as it is typed. */
  2988. /* The last accepted incremental search string. */
  2989. static char *last_isearch_accepted = (char *)NULL;
  2990.  
  2991. /* The current incremental search string. */
  2992. static char *isearch_string = (char *)NULL;
  2993. static int isearch_string_index = 0;
  2994. static int isearch_string_size = 0;
  2995. static unsigned char isearch_terminate_search_key = ESC;
  2996.  
  2997. /* Structure defining the current state of an incremental search. */
  2998. typedef struct {
  2999.   WINDOW_STATE_DECL;    /* The node, pagetop and point. */
  3000.   int search_index;    /* Offset of the last char in the search string. */
  3001.   int direction;    /* The direction that this search is heading in. */
  3002.   int failing;        /* Whether or not this search failed. */
  3003. } SEARCH_STATE;
  3004.  
  3005. /* Array of search states. */
  3006. static SEARCH_STATE **isearch_states = (SEARCH_STATE **)NULL;
  3007. static int isearch_states_index = 0;
  3008. static int isearch_states_slots = 0;
  3009.  
  3010. /* Push the state of this search. */
  3011. static void
  3012. push_isearch (window, search_index, direction, failing)
  3013.      WINDOW *window;
  3014.      int search_index, direction, failing;
  3015. {
  3016.   SEARCH_STATE *state;
  3017.  
  3018.   state = (SEARCH_STATE *)xmalloc (sizeof (SEARCH_STATE));
  3019.   window_get_state (window, state);
  3020.   state->search_index = search_index;
  3021.   state->direction = direction;
  3022.   state->failing = failing;
  3023.  
  3024.   add_pointer_to_array (state, isearch_states_index, isearch_states,
  3025.             isearch_states_slots, 20, SEARCH_STATE *);
  3026. }
  3027.  
  3028. /* Pop the state of this search to WINDOW, SEARCH_INDEX, and DIRECTION. */
  3029. static void
  3030. pop_isearch (window, search_index, direction, failing)
  3031.      WINDOW *window;
  3032.      int *search_index, *direction, *failing;
  3033. {
  3034.   SEARCH_STATE *state;
  3035.  
  3036.   if (isearch_states_index)
  3037.     {
  3038.       isearch_states_index--;
  3039.       state = isearch_states[isearch_states_index];
  3040.       window_set_state (window, state);
  3041.       *search_index = state->search_index;
  3042.       *direction = state->direction;
  3043.       *failing = state->failing;
  3044.  
  3045.       free (state);
  3046.       isearch_states[isearch_states_index] = (SEARCH_STATE *)NULL;
  3047.     }
  3048. }
  3049.  
  3050. /* Free the memory used by isearch_states. */
  3051. static void
  3052. free_isearch_states ()
  3053. {
  3054.   register int i;
  3055.  
  3056.   for (i = 0; i < isearch_states_index; i++)
  3057.     {
  3058.       free (isearch_states[i]);
  3059.       isearch_states[i] = (SEARCH_STATE *)NULL;
  3060.     }
  3061.   isearch_states_index = 0;
  3062. }
  3063.  
  3064. /* Display the current search in the echo area. */
  3065. static void
  3066. show_isearch_prompt (dir, string, failing_p)
  3067.      int dir;
  3068.      unsigned char *string;
  3069.      int failing_p;
  3070. {
  3071.   register int i;
  3072.   char *prefix, *prompt, *p_rep;
  3073.   int prompt_len, p_rep_index, p_rep_size;
  3074.  
  3075.   if (dir < 0)
  3076.     prefix = "I-search backward: ";
  3077.   else
  3078.     prefix = "I-search: ";
  3079.  
  3080.   p_rep_index = p_rep_size = 0;
  3081.   p_rep = (char *)NULL;
  3082.   for (i = 0; string[i]; i++)
  3083.     {
  3084.       char *rep;
  3085.  
  3086.       switch (string[i])
  3087.     {
  3088.     case ' ': rep = " "; break;
  3089.     case LFD: rep = "\\n"; break;
  3090.     case TAB: rep = "\\t"; break;
  3091.     default:
  3092.       rep = pretty_keyname (string[i]);
  3093.     }
  3094.       if ((p_rep_index + strlen (rep) + 1) >= p_rep_size)
  3095.     p_rep = (char *)xrealloc (p_rep, p_rep_size += 100);
  3096.  
  3097.       strcpy (p_rep + p_rep_index, rep);
  3098.       p_rep_index += strlen (rep);
  3099.     }
  3100.  
  3101.   prompt_len = strlen (prefix) + p_rep_index + 20;
  3102.   prompt = (char *)xmalloc (prompt_len);
  3103.   sprintf (prompt, "%s%s%s", failing_p ? "Failing " : "", prefix,
  3104.        p_rep ? p_rep : "");
  3105.  
  3106.   window_message_in_echo_area ("%s", prompt);
  3107.   maybe_free (p_rep);
  3108.   free (prompt);
  3109.   display_cursor_at_point (active_window);
  3110. }
  3111.  
  3112. static void
  3113. incremental_search (window, count, ignore)
  3114.      WINDOW *window;
  3115.      int count;
  3116.      unsigned char ignore;
  3117. {
  3118.   unsigned char key;
  3119.   int last_search_result, search_result, dir;
  3120.   SEARCH_STATE mystate, orig_state;
  3121.  
  3122.   if (count < 0)
  3123.     dir = -1;
  3124.   else
  3125.     dir = 1;
  3126.  
  3127.   last_search_result = search_result = 0;
  3128.  
  3129.   window_get_state (window, &orig_state);
  3130.  
  3131.   isearch_string_index = 0;
  3132.   if (!isearch_string_size)
  3133.     isearch_string = (char *)xmalloc (isearch_string_size = 50);
  3134.  
  3135.   /* Show the search string in the echo area. */
  3136.   isearch_string[isearch_string_index] = '\0';
  3137.   show_isearch_prompt (dir, isearch_string, search_result);
  3138.  
  3139.   isearch_is_active = 1;
  3140.  
  3141.   while (isearch_is_active)
  3142.     {
  3143.       VFunction *func = (VFunction *)NULL;
  3144.       int quoted = 0;
  3145.  
  3146.       /* If a recent display was interrupted, then do the redisplay now if
  3147.      it is convenient. */
  3148.       if (!info_any_buffered_input_p () && display_was_interrupted_p)
  3149.     {
  3150.       display_update_one_window (window);
  3151.       display_cursor_at_point (active_window);
  3152.     }
  3153.  
  3154.       /* Read a character and dispatch on it. */
  3155.       key = info_get_input_char ();
  3156.       window_get_state (window, &mystate);
  3157.  
  3158.       if (key == DEL)
  3159.     {
  3160.       /* User wants to delete one level of search? */
  3161.       if (!isearch_states_index)
  3162.         {
  3163.           terminal_ring_bell ();
  3164.           continue;
  3165.         }
  3166.       else
  3167.         {
  3168.           pop_isearch
  3169.         (window, &isearch_string_index, &dir, &search_result);
  3170.           isearch_string[isearch_string_index] = '\0';
  3171.           show_isearch_prompt (dir, isearch_string, search_result);
  3172.           goto after_search;
  3173.         }
  3174.     }
  3175.       else if (key == Control ('q'))
  3176.     {
  3177.       key = info_get_input_char ();
  3178.       quoted = 1;
  3179.     }
  3180.  
  3181.       /* We are about to search again, or quit.  Save the current search. */
  3182.       push_isearch (window, isearch_string_index, dir, search_result);
  3183.  
  3184.       if (quoted)
  3185.     goto insert_and_search;
  3186.  
  3187.       if (!Meta_p (key) || (ISO_Latin_p && key < 160))
  3188.     {
  3189.       func = window->keymap[key].function;
  3190.  
  3191.       /* If this key invokes an incremental search, then this means that
  3192.          we will either search again in the same direction, search
  3193.          again in the reverse direction, or insert the last search
  3194.          string that was accepted through incremental searching. */
  3195.       if (func == isearch_forward || func == isearch_backward)
  3196.         {
  3197.           if ((func == isearch_forward && dir > 0) ||
  3198.           (func == isearch_backward && dir < 0))
  3199.         {
  3200.           /* If the user has typed no characters, then insert the
  3201.              last successful search into the current search string. */
  3202.           if (isearch_string_index == 0)
  3203.             {
  3204.               /* Of course, there must be something to insert. */
  3205.               if (last_isearch_accepted)
  3206.             {
  3207.               if (strlen (last_isearch_accepted) + 1 >=
  3208.                   isearch_string_size)
  3209.                 isearch_string = (char *)
  3210.                   xrealloc (isearch_string,
  3211.                     isearch_string_size += 10 +
  3212.                     strlen (last_isearch_accepted));
  3213.               strcpy (isearch_string, last_isearch_accepted);
  3214.               isearch_string_index = strlen (isearch_string);
  3215.               goto search_now;
  3216.             }
  3217.               else
  3218.             continue;
  3219.             }
  3220.           else
  3221.             {
  3222.               /* Search again in the same direction.  This means start
  3223.              from a new place if the last search was successful. */
  3224.               if (search_result == 0)
  3225.             window->point += dir;
  3226.             }
  3227.         }
  3228.           else
  3229.         {
  3230.           /* Reverse the direction of the search. */
  3231.           dir = -dir;
  3232.         }
  3233.         }
  3234.       else if (isprint (key) || func == (VFunction *)NULL)
  3235.         {
  3236.         insert_and_search:
  3237.  
  3238.           if (isearch_string_index + 2 >= isearch_string_size)
  3239.         isearch_string = (char *)xrealloc
  3240.           (isearch_string, isearch_string_size += 100);
  3241.  
  3242.           isearch_string[isearch_string_index++] = key;
  3243.           isearch_string[isearch_string_index] = '\0';
  3244.           goto search_now;
  3245.         }
  3246.       else if (func == info_abort_key)
  3247.         {
  3248.           /* If C-g pressed, and the search is failing, pop the search
  3249.          stack back to the last unfailed search. */
  3250.           if (isearch_states_index && (search_result != 0))
  3251.         {
  3252.           terminal_ring_bell ();
  3253.           while (isearch_states_index && (search_result != 0))
  3254.             pop_isearch
  3255.               (window, &isearch_string_index, &dir, &search_result);
  3256.           isearch_string[isearch_string_index] = '\0';
  3257.           show_isearch_prompt (dir, isearch_string, search_result);
  3258.           continue;
  3259.         }
  3260.           else
  3261.         goto exit_search;
  3262.         }
  3263.       else
  3264.         goto exit_search;
  3265.     }
  3266.       else
  3267.     {
  3268.     exit_search:
  3269.       /* The character is not printable, or it has a function which is
  3270.          non-null.  Exit the search, remembering the search string.  If
  3271.          the key is not the same as the isearch_terminate_search_key,
  3272.          then push it into pending input. */
  3273.       if (isearch_string_index && func != info_abort_key)
  3274.         {
  3275.           maybe_free (last_isearch_accepted);
  3276.           last_isearch_accepted = savestring (isearch_string);
  3277.         }
  3278.  
  3279.       if (key != isearch_terminate_search_key)
  3280.         info_set_pending_input (key);
  3281.  
  3282.       if (func == info_abort_key)
  3283.         {
  3284.           if (isearch_states_index)
  3285.         window_set_state (window, &orig_state);
  3286.         }
  3287.  
  3288.       if (!echo_area_is_active)
  3289.         window_clear_echo_area ();
  3290.  
  3291.       if (auto_footnotes_p)
  3292.         info_get_or_remove_footnotes (active_window);
  3293.  
  3294.       isearch_is_active = 0;
  3295.       continue;
  3296.     }
  3297.  
  3298.       /* Search for the contents of isearch_string. */
  3299.     search_now:
  3300.       show_isearch_prompt (dir, isearch_string, search_result);
  3301.  
  3302.       if (search_result == 0)
  3303.     {
  3304.       /* Check to see if the current search string is right here.  If
  3305.          we are looking at it, then don't bother calling the search
  3306.          function. */
  3307.       if (((dir < 0) &&
  3308.            (strnicmp (window->node->contents + window->point,
  3309.              isearch_string, isearch_string_index) == 0)) ||
  3310.           ((dir > 0) &&
  3311.            ((window->point - isearch_string_index) >= 0) &&
  3312.            (strnicmp (window->node->contents +
  3313.               (window->point - (isearch_string_index - 1)),
  3314.               isearch_string, isearch_string_index) == 0)))
  3315.         {
  3316.           if (dir > 0)
  3317.         window->point++;
  3318.         }
  3319.       else
  3320.         search_result = info_search_internal (isearch_string, window, dir);
  3321.     }
  3322.  
  3323.       /* If this search failed, and we didn't already have a failed search,
  3324.      then ring the terminal bell. */
  3325.       if (search_result != 0 && last_search_result == 0)
  3326.     terminal_ring_bell ();
  3327.  
  3328.     after_search:
  3329.       show_isearch_prompt (dir, isearch_string, search_result);
  3330.  
  3331.       if (search_result == 0)
  3332.     {
  3333.       if ((mystate.node == window->node) &&
  3334.           (mystate.pagetop != window->pagetop))
  3335.         {
  3336.           int newtop = window->pagetop;
  3337.           window->pagetop = mystate.pagetop;
  3338.           set_window_pagetop (window, newtop);
  3339.         }
  3340.       display_update_one_window (window);
  3341.       display_cursor_at_point (window);
  3342.     }
  3343.  
  3344.       last_search_result = search_result;
  3345.     }
  3346.  
  3347.   /* Free the memory used to remember each search state. */
  3348.   free_isearch_states ();
  3349.  
  3350.   /* Perhaps GC some file buffers. */
  3351.   info_gc_file_buffers ();
  3352.  
  3353.   /* After searching, leave the window in the correct state. */
  3354.   if (!echo_area_is_active)
  3355.     window_clear_echo_area ();
  3356. }
  3357.  
  3358. /* GC some file buffers.  A file buffer can be gc-ed if there we have
  3359.    no nodes in INFO_WINDOWS that reference this file buffer's contents.
  3360.    Garbage collecting a file buffer means to free the file buffers
  3361.    contents. */
  3362. static void
  3363. info_gc_file_buffers ()
  3364. {
  3365.   register int fb_index, iw_index, i;
  3366.   register FILE_BUFFER *fb;
  3367.   register INFO_WINDOW *iw;
  3368.  
  3369.   if (!info_loaded_files)
  3370.     return;
  3371.  
  3372.   for (fb_index = 0; fb = info_loaded_files[fb_index]; fb_index++)
  3373.     {
  3374.       int fb_referenced_p = 0;
  3375.  
  3376.       /* If already gc-ed, do nothing. */
  3377.       if (!fb->contents)
  3378.     continue;
  3379.  
  3380.       /* If this file had to be uncompressed, check to see if we should
  3381.      gc it.  This means that the user-variable "gc-compressed-files"
  3382.      is non-zero. */
  3383.       if ((fb->flags & N_IsCompressed) && !gc_compressed_files)
  3384.     continue;
  3385.  
  3386.       /* If this file's contents are not gc-able, move on. */
  3387.       if (fb->flags & N_CannotGC)
  3388.     continue;
  3389.  
  3390.       /* Check each INFO_WINDOW to see if it has any nodes which reference
  3391.      this file. */
  3392.       for (iw_index = 0; iw = info_windows[iw_index]; iw_index++)
  3393.     {
  3394.       for (i = 0; iw->nodes && iw->nodes[i]; i++)
  3395.         {
  3396.           if ((strcmp (fb->fullpath, iw->nodes[i]->filename) == 0) ||
  3397.           (strcmp (fb->filename, iw->nodes[i]->filename) == 0))
  3398.         {
  3399.           fb_referenced_p = 1;
  3400.           break;
  3401.         }
  3402.         }
  3403.     }
  3404.  
  3405.       /* If this file buffer wasn't referenced, free its contents. */
  3406.       if (!fb_referenced_p)
  3407.     {
  3408.       free (fb->contents);
  3409.       fb->contents = (char *)NULL;
  3410.     }
  3411.     }
  3412. }
  3413.  
  3414. /* **************************************************************** */
  3415. /*                                    */
  3416. /*          Traversing and Selecting References            */
  3417. /*                                    */
  3418. /* **************************************************************** */
  3419.  
  3420. /* Move to the next or previous cross reference in this node. */
  3421. static void
  3422. info_move_to_xref (window, count, key, dir)
  3423.      WINDOW *window;
  3424.      int count;
  3425.      unsigned char key;
  3426.      int dir;
  3427. {
  3428.   long firstmenu, firstxref;
  3429.   long nextmenu, nextxref;
  3430.   long placement = -1;
  3431.   long start = 0;
  3432.   NODE *node = window->node;
  3433.  
  3434.   if (dir < 0)
  3435.     start = node->nodelen;
  3436.  
  3437.   /* This search is only allowed to fail if there is no menu or cross
  3438.      reference in the current node.  Otherwise, the first menu or xref
  3439.      found is moved to. */
  3440.  
  3441.   firstmenu = info_search_in_node
  3442.     (INFO_MENU_ENTRY_LABEL, node, start, (WINDOW *)NULL, dir);
  3443.  
  3444.   /* FIRSTMENU may point directly to the line defining the menu.  Skip that
  3445.      and go directly to the first item. */
  3446.  
  3447.   if (firstmenu != -1)
  3448.     {
  3449.       char *text = node->contents + firstmenu;
  3450.  
  3451.       if (strncmp (text, INFO_MENU_LABEL, strlen (INFO_MENU_LABEL)) == 0)
  3452.     firstmenu = info_search_in_node
  3453.       (INFO_MENU_ENTRY_LABEL, node, firstmenu + dir, (WINDOW *)NULL, dir);
  3454.     }
  3455.  
  3456.   firstxref =
  3457.     info_search_in_node (INFO_XREF_LABEL, node, start, (WINDOW *)NULL, dir);
  3458.  
  3459.   if (firstmenu == -1 && firstxref == -1)
  3460.     {
  3461.       info_error ("No cross references in this node.");
  3462.       return;
  3463.     }
  3464.  
  3465.   /* There is at least one cross reference or menu entry in this node.
  3466.      Try hard to find the next available one. */
  3467.  
  3468.   nextmenu = info_search_in_node
  3469.     (INFO_MENU_ENTRY_LABEL, node, window->point + dir, (WINDOW *)NULL, dir);
  3470.  
  3471.   nextxref = info_search_in_node
  3472.     (INFO_XREF_LABEL, node, window->point + dir, (WINDOW *)NULL, dir);
  3473.  
  3474.   /* Ignore "Menu:" as a menu item. */
  3475.   if (nextmenu != -1)
  3476.     {
  3477.       char *text = node->contents + nextmenu;
  3478.  
  3479.       if (strncmp (text, INFO_MENU_LABEL, strlen (INFO_MENU_LABEL)) == 0)
  3480.     nextmenu = info_search_in_node
  3481.       (INFO_MENU_ENTRY_LABEL, node, nextmenu + dir, (WINDOW *)NULL, dir);
  3482.     }
  3483.  
  3484.   /* If there is both a next menu entry, and a next xref entry, choose the
  3485.      one which occurs first.  Otherwise, select the one which actually
  3486.      appears in this node following point. */
  3487.   if (nextmenu != -1 && nextxref != -1)
  3488.     {
  3489.       if (((dir == 1) && (nextmenu < nextxref)) ||
  3490.       ((dir == -1) && (nextmenu > nextxref)))
  3491.     placement = nextmenu + 1;
  3492.       else
  3493.     placement = nextxref;
  3494.     }
  3495.   else if (nextmenu != -1)
  3496.     placement = nextmenu + 1;
  3497.   else if (nextxref != -1)
  3498.     placement = nextxref;
  3499.  
  3500.   /* If there was neither a menu or xref entry appearing in this node after
  3501.      point, choose the first menu or xref entry appearing in this node. */
  3502.   if (placement == -1)
  3503.     {
  3504.       if (firstmenu != -1 && firstxref != -1)
  3505.     {
  3506.       if (((dir == 1) && (firstmenu < firstxref)) ||
  3507.           ((dir == -1) && (firstmenu > firstxref)))
  3508.         placement = firstmenu + 1;
  3509.       else
  3510.         placement = firstxref;
  3511.     }
  3512.       else if (firstmenu != -1)
  3513.     placement = firstmenu + 1;
  3514.       else
  3515.     placement = firstxref;
  3516.     }
  3517.   window->point = placement;
  3518.   window_adjust_pagetop (window);
  3519.   window->flags |= W_UpdateWindow;
  3520. }
  3521.  
  3522. DECLARE_INFO_COMMAND (info_move_to_prev_xref,
  3523.               "Move to the previous cross reference")
  3524. {
  3525.   if (count < 0)
  3526.     info_move_to_prev_xref (window, -count, key);
  3527.   else
  3528.     info_move_to_xref (window, count, key, -1);
  3529. }
  3530.  
  3531. DECLARE_INFO_COMMAND (info_move_to_next_xref,
  3532.               "Move to the next cross reference")
  3533. {
  3534.   if (count < 0)
  3535.     info_move_to_next_xref (window, -count, key);
  3536.   else
  3537.     info_move_to_xref (window, count, key, 1);
  3538. }
  3539.  
  3540. /* Select the menu item or reference that appears on this line. */
  3541. DECLARE_INFO_COMMAND (info_select_reference_this_line,
  3542.               "Select reference or menu item appearing on this line")
  3543. {
  3544.   char *line;
  3545.   NODE *orig;
  3546.  
  3547.   line = window->line_starts[window_line_of_point (window)];
  3548.   orig = window->node;
  3549.  
  3550.   /* If this line contains a menu item, select that one. */
  3551.   if (strncmp ("* ", line, 2) == 0)
  3552.     info_menu_or_ref_item (window, count, key, info_menu_of_node, 0);
  3553.   else
  3554.     info_menu_or_ref_item (window, count, key, info_xrefs_of_node, 0);
  3555. }
  3556.  
  3557. /* **************************************************************** */
  3558. /*                                    */
  3559. /*            Miscellaneous Info Commands                */
  3560. /*                                    */
  3561. /* **************************************************************** */
  3562.  
  3563. /* What to do when C-g is pressed in a window. */
  3564. DECLARE_INFO_COMMAND (info_abort_key, "Cancel current operation")
  3565. {
  3566.   /* If error printing doesn't oridinarily ring the bell, do it now,
  3567.      since C-g always rings the bell.  Otherwise, let the error printer
  3568.      do it. */
  3569.   if (!info_error_rings_bell_p)
  3570.     terminal_ring_bell ();
  3571.   info_error ("Quit");
  3572.  
  3573.   info_initialize_numeric_arg ();
  3574.   info_clear_pending_input ();
  3575.   info_last_executed_command = (VFunction *)NULL;
  3576. }
  3577.  
  3578. /* Move the cursor to the desired line of the window. */
  3579. DECLARE_INFO_COMMAND (info_move_to_window_line,
  3580.    "Move to the cursor to a specific line of the window")
  3581. {
  3582.   int line;
  3583.  
  3584.   /* With no numeric argument of any kind, default to the center line. */
  3585.   if (!info_explicit_arg && count == 1)
  3586.     line = (window->height / 2) + window->pagetop;
  3587.   else
  3588.     {
  3589.       if (count < 0)
  3590.     line = (window->height + count) + window->pagetop;
  3591.       else
  3592.     line = window->pagetop + count;
  3593.     }
  3594.  
  3595.   /* If the line doesn't appear in this window, make it do so. */
  3596.   if ((line - window->pagetop) >= window->height)
  3597.     line = window->pagetop + (window->height - 1);
  3598.  
  3599.   /* If the line is too small, make it fit. */
  3600.   if (line < window->pagetop)
  3601.     line = window->pagetop;
  3602.  
  3603.   /* If the selected line is past the bottom of the node, force it back. */
  3604.   if (line >= window->line_count)
  3605.     line = window->line_count - 1;
  3606.  
  3607.   window->point = (window->line_starts[line] - window->node->contents);
  3608. }
  3609.  
  3610. /* Clear the screen and redraw its contents.  Given a numeric argument,
  3611.    move the line the cursor is on to the COUNT'th line of the window. */
  3612. DECLARE_INFO_COMMAND (info_redraw_display, "Redraw the display")
  3613. {
  3614.   if ((!info_explicit_arg && count == 1) || echo_area_is_active)
  3615.     {
  3616.       terminal_clear_screen ();
  3617.       display_clear_display (the_display);
  3618.       window_mark_chain (windows, W_UpdateWindow);
  3619.       display_update_display (windows);
  3620.     }
  3621.   else
  3622.     {
  3623.       int desired_line, point_line;
  3624.       int new_pagetop;
  3625.  
  3626.       point_line = window_line_of_point (window) - window->pagetop;
  3627.  
  3628.       if (count < 0)
  3629.     desired_line = window->height + count;
  3630.       else
  3631.     desired_line = count;
  3632.  
  3633.       if (desired_line < 0)
  3634.     desired_line = 0;
  3635.  
  3636.       if (desired_line >= window->height)
  3637.     desired_line = window->height - 1;
  3638.  
  3639.       if (desired_line == point_line)
  3640.     return;
  3641.  
  3642.       new_pagetop = window->pagetop + (point_line - desired_line);
  3643.  
  3644.       set_window_pagetop (window, new_pagetop);
  3645.     }
  3646. }
  3647. /* This command does nothing.  It is the fact that a key is bound to it
  3648.    that has meaning.  See the code at the top of info_session (). */
  3649. DECLARE_INFO_COMMAND (info_quit, "Quit using Info")
  3650. {}
  3651.  
  3652.  
  3653. /* **************************************************************** */
  3654. /*                                    */
  3655. /*         Reading Keys and Dispatching on Them            */
  3656. /*                                    */
  3657. /* **************************************************************** */
  3658.  
  3659. /* Declaration only.  Special cased in info_dispatch_on_key (). */
  3660. DECLARE_INFO_COMMAND (info_do_lowercase_version, "")
  3661. {}
  3662.  
  3663. static void
  3664. dispatch_error (keyseq)
  3665.      char *keyseq;
  3666. {
  3667.   char *rep;
  3668.   char *format;
  3669.  
  3670.   rep = pretty_keyseq (keyseq);
  3671.  
  3672.   format = replace_in_documentation
  3673.     ("Unknown command (%s).  Type \"\\[quit]\" to quit, \"\\[get-help-window]\" for help.");
  3674.  
  3675.   if (!echo_area_is_active)
  3676.     info_error (format, rep); 
  3677.   else
  3678.     {
  3679.       char *temp;
  3680.  
  3681.       temp = (char *)xmalloc (1 + strlen (rep) + strlen ("\"\" is invalid"));
  3682.  
  3683.       sprintf (temp, "\"%s\" is invalid", rep);
  3684.       terminal_ring_bell ();
  3685.       inform_in_echo_area (temp);
  3686.       free (temp);
  3687.     }
  3688. }
  3689.  
  3690. /* Keeping track of key sequences. */
  3691. static char *info_keyseq = (char *)NULL;
  3692. static char keyseq_rep[100];
  3693. static int info_keyseq_index = 0;
  3694. static int info_keyseq_size = 0;
  3695. static int info_keyseq_displayed_p = 0;
  3696.  
  3697. /* Initialize the length of the current key sequence. */
  3698. void
  3699. initialize_keyseq ()
  3700. {
  3701.   info_keyseq_index = 0;
  3702.   info_keyseq_displayed_p = 0;
  3703. }
  3704.  
  3705. /* Add CHARACTER to the current key sequence. */
  3706. void
  3707. add_char_to_keyseq (character)
  3708.      char character;
  3709. {
  3710.   if (info_keyseq_index + 2 >= info_keyseq_size)
  3711.     info_keyseq = (char *)xrealloc (info_keyseq, info_keyseq_size += 10);
  3712.  
  3713.   info_keyseq[info_keyseq_index++] = character;
  3714.   info_keyseq[info_keyseq_index] = '\0';
  3715. }
  3716.  
  3717. /* Return the pretty printable string which represents KEYSEQ. */
  3718. char *
  3719. pretty_keyseq (keyseq)
  3720.      char *keyseq;
  3721. {
  3722.   register int i;
  3723.  
  3724.   keyseq_rep[0] = '\0';
  3725.  
  3726.   for (i = 0; keyseq[i]; i++)
  3727.     {
  3728.       sprintf (keyseq_rep + strlen (keyseq_rep), "%s%s",
  3729.            strlen (keyseq_rep) ? " " : "",
  3730.            pretty_keyname (keyseq[i]));
  3731.     }
  3732.  
  3733.   return (keyseq_rep);
  3734. }
  3735.  
  3736. /* Display the current value of info_keyseq.  If argument EXPECTING is
  3737.    non-zero, input is expected to be read after the key sequence is
  3738.    displayed, so add an additional prompting character to the sequence. */
  3739. void
  3740. display_info_keyseq (expecting_future_input)
  3741.      int expecting_future_input;
  3742. {
  3743.   char *rep;
  3744.  
  3745.   rep = pretty_keyseq (info_keyseq);
  3746.   if (expecting_future_input)
  3747.     strcat (rep, "-");
  3748.  
  3749.   if (echo_area_is_active)
  3750.     inform_in_echo_area (rep);
  3751.   else
  3752.     {
  3753.       window_message_in_echo_area (rep);
  3754.       display_cursor_at_point (active_window);
  3755.     }
  3756.   info_keyseq_displayed_p = 1;
  3757. }
  3758.  
  3759. /* Called by interactive commands to read a keystroke. */
  3760. unsigned char
  3761. info_get_another_input_char ()
  3762. {
  3763.   int ready = 0;
  3764.  
  3765.   /* If there isn't any input currently available, then wait a
  3766.      moment looking for input.  If we don't get it fast enough,
  3767.      prompt a little bit with the current key sequence. */
  3768.   if (!info_keyseq_displayed_p &&
  3769.       !info_any_buffered_input_p () &&
  3770.       !info_input_pending_p ())
  3771.     {
  3772. #if defined (FD_SET)
  3773.       struct timeval timer;
  3774.       fd_set readfds;
  3775.  
  3776.       FD_ZERO (&readfds);
  3777.       FD_SET (fileno (info_input_stream), &readfds);
  3778.       timer.tv_sec = 1;
  3779.       timer.tv_usec = 750;
  3780.       ready = select (1, &readfds, (fd_set *)NULL, (fd_set *)NULL, &timer);
  3781. #endif /* FD_SET */
  3782.     }
  3783.  
  3784.   if (!ready)
  3785.     display_info_keyseq (1);
  3786.  
  3787.   return (info_get_input_char ());
  3788. }
  3789.  
  3790. /* Do the command associated with KEY in MAP.  If the associated command is
  3791.    really a keymap, then read another key, and dispatch into that map. */
  3792. void
  3793. info_dispatch_on_key (key, map)
  3794.      unsigned char key;
  3795.      Keymap map;
  3796. {
  3797.   if (Meta_p (key) && (!ISO_Latin_p || map[key].function != ea_insert))
  3798.     {
  3799.       if (map[ESC].type == ISKMAP)
  3800.     {
  3801.       map = (Keymap)map[ESC].function;
  3802.       add_char_to_keyseq (ESC);
  3803.       key = UnMeta (key);
  3804.       info_dispatch_on_key (key, map);
  3805.     }
  3806.       else
  3807.     {
  3808.       dispatch_error (info_keyseq);
  3809.     }
  3810.       return;
  3811.     }
  3812.  
  3813.   switch (map[key].type)
  3814.     {
  3815.     case ISFUNC:
  3816.       {
  3817.     VFunction *func;
  3818.  
  3819.     func = map[key].function;
  3820.     if (func != (VFunction *)NULL)
  3821.       {
  3822.         /* Special case info_do_lowercase_version (). */
  3823.         if (func == info_do_lowercase_version)
  3824.           {
  3825.         info_dispatch_on_key (tolower (key), map);
  3826.         return;
  3827.           }
  3828.  
  3829.         add_char_to_keyseq (key);
  3830.  
  3831.         if (info_keyseq_displayed_p)
  3832.           display_info_keyseq (0);
  3833.  
  3834.         {
  3835.           WINDOW *where;
  3836.  
  3837.           where = active_window;
  3838.           (*map[key].function)
  3839.         (active_window, info_numeric_arg * info_numeric_arg_sign, key);
  3840.  
  3841.           /* If we have input pending, then the last command was a prefix
  3842.          command.  Don't change the value of the last function vars.
  3843.          Otherwise, remember the last command executed in the var
  3844.          appropriate to the window in which it was executed. */
  3845.           if (!info_input_pending_p ())
  3846.         {
  3847.           if (where == the_echo_area)
  3848.             ea_last_executed_command = map[key].function;
  3849.           else
  3850.             info_last_executed_command = map[key].function;
  3851.         }
  3852.         }
  3853.       }
  3854.     else
  3855.       {
  3856.         add_char_to_keyseq (key);
  3857.         dispatch_error (info_keyseq);
  3858.         return;
  3859.       }
  3860.       }
  3861.       break;
  3862.  
  3863.     case ISKMAP:
  3864.       add_char_to_keyseq (key);
  3865.       if (map[key].function != (VFunction *)NULL)
  3866.     {
  3867.       unsigned char newkey;
  3868.  
  3869.       newkey = info_get_another_input_char ();
  3870.       info_dispatch_on_key (newkey, (Keymap)map[key].function);
  3871.     }
  3872.       else
  3873.     {
  3874.       dispatch_error (info_keyseq);
  3875.       return;
  3876.     }
  3877.       break;
  3878.     }
  3879. }
  3880.  
  3881. /* **************************************************************** */
  3882. /*                                    */
  3883. /*            Numeric Arguments                */
  3884. /*                                    */
  3885. /* **************************************************************** */
  3886.  
  3887. /* Handle C-u style numeric args, as well as M--, and M-digits. */
  3888.  
  3889. /* Non-zero means that an explicit argument has been passed to this
  3890.    command, as in C-u C-v. */
  3891. int info_explicit_arg = 0;
  3892.  
  3893. /* The sign of the numeric argument. */
  3894. int info_numeric_arg_sign = 1;
  3895.  
  3896. /* The value of the argument itself. */
  3897. int info_numeric_arg = 1;
  3898.  
  3899. /* Add the current digit to the argument in progress. */
  3900. DECLARE_INFO_COMMAND (info_add_digit_to_numeric_arg,
  3901.               "Add this digit to the current numeric argument")
  3902. {
  3903.   info_numeric_arg_digit_loop (window, 0, key);
  3904. }
  3905.  
  3906. /* C-u, universal argument.  Multiply the current argument by 4.
  3907.    Read a key.  If the key has nothing to do with arguments, then
  3908.    dispatch on it.  If the key is the abort character then abort. */
  3909. DECLARE_INFO_COMMAND (info_universal_argument,
  3910.               "Start (or multiply by 4) the current numeric argument")
  3911. {
  3912.   info_numeric_arg *= 4;
  3913.   info_numeric_arg_digit_loop (window, 0, 0);
  3914. }
  3915.  
  3916. /* Create a default argument. */
  3917. void
  3918. info_initialize_numeric_arg ()
  3919. {
  3920.   info_numeric_arg = info_numeric_arg_sign = 1;
  3921.   info_explicit_arg = 0;
  3922. }
  3923.  
  3924. DECLARE_INFO_COMMAND (info_numeric_arg_digit_loop, "")
  3925. {
  3926.   unsigned char pure_key;
  3927.   Keymap keymap = window->keymap;
  3928.  
  3929.   while (1)
  3930.     {
  3931.       if (key)
  3932.     pure_key = key;
  3933.       else
  3934.     {
  3935.       if (display_was_interrupted_p && !info_any_buffered_input_p ())
  3936.         display_update_display (windows);
  3937.  
  3938.       if (active_window != the_echo_area)
  3939.         display_cursor_at_point (active_window);
  3940.  
  3941.       pure_key = key = info_get_another_input_char ();
  3942.  
  3943.       if (Meta_p (key))
  3944.         add_char_to_keyseq (ESC);
  3945.  
  3946.       add_char_to_keyseq (UnMeta (key));
  3947.     }
  3948.  
  3949.       if (Meta_p (key))
  3950.     key = UnMeta (key);
  3951.  
  3952.       if (keymap[key].type == ISFUNC &&
  3953.       keymap[key].function == info_universal_argument)
  3954.     {
  3955.       info_numeric_arg *= 4;
  3956.       key = 0;
  3957.       continue;
  3958.     }
  3959.  
  3960.       if (isdigit (key))
  3961.     {
  3962.       if (info_explicit_arg)
  3963.         info_numeric_arg = (info_numeric_arg * 10) + (key - '0');
  3964.       else
  3965.         info_numeric_arg = (key - '0');
  3966.       info_explicit_arg = 1;
  3967.     }
  3968.       else
  3969.     {
  3970.       if (key == '-' && !info_explicit_arg)
  3971.         {
  3972.           info_numeric_arg_sign = -1;
  3973.           info_numeric_arg = 1;
  3974.         }
  3975.       else
  3976.         {
  3977.           info_keyseq_index--;
  3978.           info_dispatch_on_key (pure_key, keymap);
  3979.           return;
  3980.         }
  3981.     }
  3982.       key = 0;
  3983.     }
  3984. }
  3985.  
  3986. /* **************************************************************** */
  3987. /*                                    */
  3988. /*            Input Character Buffering               */
  3989. /*                                    */
  3990. /* **************************************************************** */
  3991.  
  3992. /* Character waiting to be read next. */
  3993. static int pending_input_character = 0;
  3994.  
  3995. /* How to make there be no pending input. */
  3996. static void
  3997. info_clear_pending_input ()
  3998. {
  3999.   pending_input_character = 0;
  4000. }
  4001.  
  4002. /* How to set the pending input character. */
  4003. static void
  4004. info_set_pending_input (key)
  4005.      unsigned char key;
  4006. {
  4007.   pending_input_character = key;
  4008. }
  4009.  
  4010. /* How to see if there is any pending input. */
  4011. unsigned char
  4012. info_input_pending_p ()
  4013. {
  4014.   return (pending_input_character);
  4015. }
  4016.  
  4017. /* Largest number of characters that we can read in advance. */
  4018. #define MAX_INFO_INPUT_BUFFERING 512
  4019.  
  4020. static int pop_index = 0, push_index = 0;
  4021. static unsigned char info_input_buffer[MAX_INFO_INPUT_BUFFERING];
  4022.  
  4023. /* Add KEY to the buffer of characters to be read. */
  4024. static void
  4025. info_push_typeahead (key)
  4026.      unsigned char key;
  4027. {
  4028.   /* Flush all pending input in the case of C-g pressed. */
  4029.   if (key == Control ('g'))
  4030.     {
  4031.       push_index = pop_index;
  4032.       info_set_pending_input (Control ('g'));
  4033.     }
  4034.   else
  4035.     {
  4036.       info_input_buffer[push_index++] = key;
  4037.       if (push_index >= sizeof (info_input_buffer))
  4038.     push_index = 0;
  4039.     }
  4040. }
  4041.  
  4042. /* Return the amount of space available in INFO_INPUT_BUFFER for new chars. */
  4043. static int
  4044. info_input_buffer_space_available ()
  4045. {
  4046.   if (pop_index > push_index)
  4047.     return (pop_index - push_index);
  4048.   else
  4049.     return (sizeof (info_input_buffer - (push_index - pop_index)));
  4050. }
  4051.  
  4052. /* Get a key from the buffer of characters to be read.
  4053.    Return the key in KEY.
  4054.    Result is non-zero if there was a key, or 0 if there wasn't. */
  4055. static int
  4056. info_get_key_from_typeahead (key)
  4057.      unsigned char *key;
  4058. {
  4059.   if (push_index == pop_index)
  4060.     return (0);
  4061.  
  4062.   *key = info_input_buffer[pop_index++];
  4063.  
  4064.   if (pop_index >= sizeof (info_input_buffer))
  4065.     pop_index = 0;
  4066.  
  4067.   return (1);
  4068. }
  4069.  
  4070. int
  4071. info_any_buffered_input_p ()
  4072. {
  4073.   info_gather_typeahead ();
  4074.   return (push_index != pop_index);
  4075. }
  4076.  
  4077. /* Push KEY into the *front* of the input buffer.  Returns non-zero if
  4078.    successful, zero if there is no space left in the buffer. */
  4079. static int
  4080. info_replace_key_to_typeahead (key)
  4081.      unsigned char key;
  4082. {
  4083.   if (info_input_buffer_space_available ())
  4084.     {
  4085.       pop_index--;
  4086.       if (pop_index < 0)
  4087.     pop_index = sizeof (info_input_buffer) - 1;
  4088.       info_input_buffer[pop_index] = key;
  4089.       return (1);
  4090.     }
  4091.   return (0);
  4092. }
  4093.  
  4094. /* If characters are available to be read, then read them and stuff them into
  4095.    info_input_buffer.  Otherwise, do nothing. */
  4096. void
  4097. info_gather_typeahead ()
  4098. {
  4099.   int tty, space_avail;
  4100.   long chars_avail;
  4101.   unsigned char input[MAX_INFO_INPUT_BUFFERING];
  4102.  
  4103.   tty = fileno (info_input_stream);
  4104.   chars_avail = 0;
  4105.  
  4106.   space_avail = info_input_buffer_space_available ();
  4107.  
  4108.   /* If we can just find out how many characters there are to read, do so. */
  4109. #if defined (FIONREAD)
  4110.   {
  4111.     ioctl (tty, FIONREAD, &chars_avail);
  4112.  
  4113.     if (chars_avail > space_avail)
  4114.       chars_avail = space_avail;
  4115.  
  4116.     if (chars_avail)
  4117.       read (tty, &input[0], chars_avail);
  4118.   }
  4119. #else /* !FIONREAD */
  4120. #  if defined (O_NDELAY)
  4121.   {
  4122.     int flags;
  4123.  
  4124.     flags = fcntl (tty, F_GETFL, 0);
  4125.  
  4126.     fcntl (tty, F_SETFL, (flags | O_NDELAY));
  4127.       chars_avail = read (tty, &input[0], space_avail);
  4128.     fcntl (tty, F_SETFL, flags);
  4129.  
  4130.     if (chars_avail == -1)
  4131.       chars_avail = 0;
  4132.   }
  4133. #  endif /* O_NDELAY */
  4134. #endif /* !FIONREAD */
  4135.  
  4136.   /* Store the input characters just read into our input buffer. */
  4137.   {
  4138.     register int i;
  4139.  
  4140.     for (i = 0; i < chars_avail; i++)
  4141.       info_push_typeahead (input[i]);
  4142.   }
  4143. }
  4144.  
  4145. /* How to read a single character. */
  4146. unsigned char
  4147. info_get_input_char ()
  4148. {
  4149.   unsigned char keystroke;
  4150.  
  4151.   info_gather_typeahead ();
  4152.  
  4153.   if (pending_input_character)
  4154.     {
  4155.       keystroke = pending_input_character;
  4156.       pending_input_character = 0;
  4157.     }
  4158.   else if (info_get_key_from_typeahead (&keystroke) == 0)
  4159.     {
  4160.       int rawkey;
  4161.       int ignoreeof = 7;
  4162.  
  4163.  /* Ugh.  After returning from a C-z that interrupted us while we were
  4164.     waiting on input, Ultrix (and other?) systems return EOF from getc
  4165.     instead of continuing to wait.  Hack around that by trying to read
  4166.     atain up to IGNOREEOF times. */
  4167.  
  4168.       do
  4169.     {
  4170.       rawkey = getc (info_input_stream);
  4171.     }
  4172.       while (rawkey == EOF && --ignoreeof);
  4173.  
  4174.       keystroke = rawkey;
  4175.  
  4176.       if (rawkey == EOF)
  4177.     {
  4178.       if (info_input_stream != stdin)
  4179.         {
  4180.           fclose (info_input_stream);
  4181.           info_input_stream = stdin;
  4182.           display_inhibited = 0;
  4183.           display_update_display (windows);
  4184.           display_cursor_at_point (active_window);
  4185.           rawkey = getc (info_input_stream);
  4186.           keystroke = rawkey;
  4187.         }
  4188.  
  4189.       if (rawkey == EOF)
  4190.         {
  4191.           keystroke = '\0';
  4192.           terminal_unprep_terminal ();
  4193.           close_dribble_file ();
  4194.           exit (0);
  4195.         }
  4196.     }
  4197.     }
  4198.  
  4199.   if (info_dribble_file)
  4200.     dribble (keystroke);
  4201.  
  4202.   return (keystroke);
  4203. }
  4204.