setkey

 SYNOPSIS
   setkey

 USAGE
   Void setkey(String fun, String key);

 DESCRIPTION
  This function may be used to define a key sequence specified by the
  string `key' to the function `fun'.  `key' can contain the `^'
  character which denotes that the following character is to be
  interpreted as a control character, e.g.,

           setkey("bob", "^Kt");

  sets the key sequence `Ctrl-K t' to the function `bob'.

  The `fun' argument is usually the name of an internal or a user
  defined S-Lang function.  However, if may also be a sequence of
  functions or even another keysequence (a keyboard macro).  For
  example,

           setkey ("bol;insert(string(whatline()))", "^Kw");

  assigns the key sequence `Ctrl-K w' to move to the beginning of a line
  and insert the current line number.  For more information about this
  important function, see the JED User Manual.

  Note that `setkey' works on the "global" keymap.

 SEE ALSO
   unsetkey, definekey
--------------------------------------------------------------

_autoload

 SYNOPSIS
   _autoload

 USAGE
   Void _autoload (String fun, String fn, ..., Integer n);

 DESCRIPTION
  The `_autoload' function is like the `autoload' function except that
  it takes `n' pairs of function name (`fun') / filename (`fn') pairs.
  For example,

           _autoload ("fun_a", "file_a", "fun_b", "file_b", 2);

  is equivalent to

           autoload ("fun_a", "file_a");
           autoload ("fun_b", "file_b");


 SEE ALSO
   autoload
--------------------------------------------------------------

push_mark

 SYNOPSIS
   push_mark

 USAGE
   Void push_mark();

 DESCRIPTION
  This function marks the current position as the beginning of a region.
  and pushes other marks onto a stack.  A region is defined by this
  mark and the editing point.  The mark is removed from the stack only
  when the function `pop_mark' is called.
  For example,

           define mark_buffer ()
           {
             bob ();
             push_mark ();
             eob ();
           }

  marks the entire buffer as a region.

 SEE ALSO
   pop_mark, push_spot, markp, dupmark, check_region
--------------------------------------------------------------

bol

 SYNOPSIS
   bol

 USAGE
   Void bol();

 DESCRIPTION
  This function moves the current editing point to the beginning of the
  current line.  The function `bolp' may be used to see if one is already
  at the beginning of a line.

 SEE ALSO
   eol, bob, eob, bolp
--------------------------------------------------------------

insert

 SYNOPSIS
   insert

 USAGE
   Void insert (String str);

 DESCRIPTION
  Inserts string `str' into buffer at the current position.  The editing
  point is moved to the end of the of the string that was inserted.

 SEE ALSO
   insert_char, del, insert_file, insbuf
--------------------------------------------------------------

insert_char

 SYNOPSIS
   insert_char

 DESCRIPTION
  Undocumented
--------------------------------------------------------------

eol

 SYNOPSIS
   eol

 USAGE
   Void eol();

 DESCRIPTION
  Moves the current position to the end of the current line.  The function
  `eolp' may be used to see if one is at the end of a line or not.

 SEE ALSO
   eolp, bol, bob, eob
--------------------------------------------------------------

setbuf

 SYNOPSIS
   setbuf

 USAGE
   Void setbuf(String buf);

 DESCRIPTION
  Changes the default buffer to one named `buf'.  If the buffer does not
  exist, it will be created.
  Note: This change only lasts until top
  level of editor loop is reached at which point the the buffer
  associated with current window will be made the default.  That is this
  change should only be considered as temporary.  To make a long lasting
  change, use the function `sw2buf'.

 SEE ALSO
   sw2buf, pop2buf, whatbuf, pop2buf_whatbuf
--------------------------------------------------------------

_add_completion

 SYNOPSIS
   _add_completion

 USAGE
   Void _add_completion (String f1, String f2, ..., Integer n);

 DESCRIPTION
  The `_add_completion' function is like the `add_completion' function
  except that it takes `n' names `f1', ... `fn'.
  For example,

           _add_completion ("fun_a", "fun_b", 2);

  is equivalent to

           add_completion ("fun_a");
           add_completion ("fun_b");


 SEE ALSO
   add_completion
--------------------------------------------------------------

del_region

 SYNOPSIS
   del_region

 USAGE
   Void del_region ();

 DESCRIPTION
  This function deletes the region defined by the mark and the current
  editing point.  For example,

           define delete_this_line ()
           {
             bol (); push_mark (); eol ();
             del_region ();
           }

  defines a function that deletes all characters on the current line
  from the beginning of the line until the end of the line.  It does not
  delete the line itself.

 SEE ALSO
   push_mark, markp, check_region
--------------------------------------------------------------

bufsubstr

 SYNOPSIS
   bufsubstr

 USAGE
   String bufsubstr ();

 DESCRIPTION
  This function returns a string that contains the characters in the
  region specified by a mark and the current editing point.
  If the region crosses lines, the string will contain newline
  characters.

 SEE ALSO
   insbuf, push_mark
--------------------------------------------------------------

right

 SYNOPSIS
   right

 USAGE
   Integer right(Integer n);

 DESCRIPTION
  This function moves the editing position forward forward `n'
  characters. It returns the number of characters actually moved.  The
  number returned will be smaller than `n' if the end of the buffer is
  reached.

 SEE ALSO
   left, up, down, eol, eob
--------------------------------------------------------------

definekey

 SYNOPSIS
   definekey

 USAGE
   Void definekey(String f, String key, String kmap);

 DESCRIPTION
  Unlike `setkey' which operates on the global keymap, this function is
  used for binding keys to functions in a specific keymap.  Here `f' is
  the function to be bound, `key' is a string of characters that make up
  the key sequence and `kmap' is the name of the keymap to be used.  See
  `setkey' for more information about the arguments.

 SEE ALSO
   setkey, undefinekey, make_keymap, use_keymap
--------------------------------------------------------------

left

 SYNOPSIS
   left

 USAGE
   Integer left(Integer n);

 DESCRIPTION
  `left' moves the editing point backward `n' characters and returns the
  number actually moved.  The number returned will be less than `n' only
  if the top of the buffer is reached.

 SEE ALSO
   right, up, down, bol, bob
--------------------------------------------------------------

whatbuf

 SYNOPSIS
   whatbuf

 USAGE
   String what_buffer();

 DESCRIPTION
  `whatbuf' returns the name of the current buffer.  It is usually used
  in functions when one wants to work with more than one buffer.  The
  function `setbuf_info' may be used to change the name of the buffer.

 SEE ALSO
   getbuf_info, bufferp
--------------------------------------------------------------

getbuf_info

 SYNOPSIS
   getbuf_info

 USAGE
   getbuf_info ();

 DESCRIPTION
  This function returns values to the stack.  The four values from the
  top are:

           Integer  % buffer flags
           String   % name of buffer
           String   % directory associated with buffer
           String   % name of file associated with buffer (if any).

  The integer that corresponds to the buffer flags are encoded as:

           bit 0: buffer modified
           bit 1: auto save mode
           bit 2: file on disk modified
           bit 3: read only bit
           bit 4: overwrite mode
           bit 5: undo enabled
           bit 6: buffer buried
           bit 7: Force save upon exit.
           bit 8: Do not backup
           bit 9: File associated with buffer is a binary file
           bit 10: Add CR to end of lines when writing buffer to disk.
           bit 11: Abbrev mode

  For example,

           (file,,,flags) = getbuf_info();

  returns the file and the flags associated with the current buffer.

 SEE ALSO
   setbuf_info, whatbuf
--------------------------------------------------------------

otherwindow

 SYNOPSIS
   otherwindow

 USAGE
   Void otherwindow ();

 DESCRIPTION
  This function will make the next window in the ring of windows as the
  default window. For example,

           define zoom_next_window ()
           {
             otherwindow (); onewindow ();
           }

  defines a function that moves to the next window and then makes it the
  only window on the screen.

 SEE ALSO
   nwindows, onewindow
--------------------------------------------------------------

is_internal

 SYNOPSIS
   is_internal

 USAGE
   Integer is_internal(String f);

 DESCRIPTION
  `is_internal' returns non-zero is function `f' is defined as an
  internal function or returns zero if not.  Internal functions not
  immediately accessable from S-Lang; rather, they must be called using
  the `call' function.  See also the related S-Lang function
  `is_defined' in the S-Lang Programmer's Reference.

 SEE ALSO
   call
--------------------------------------------------------------

setbuf_info

 SYNOPSIS
   setbuf_info

 USAGE
   Void setbuf_info(String file, String dir, String buf, Integer flags);

 DESCRIPTION
  This function may be used to change attributes regarding the current
  buffer.  It performs the opposite function of the related function
  `getbuf_info'.   Here `file' is the name of the file to be associated
  with the buffer; `dir' is the directory to be associated with the
  buffer; `buf' is the name to be assigned to the buffer, and `flags'
  describe the buffer attributes.  See `getbuf_info' for a discussion of
  `flags'.  Note that the actual file associated with the buffer is
  located in directory `dir' with the name `file'.
  For example, the function

           define set_overwrite_mode ()
           {
              variable dir, file, flags, name;
              (file, dir, name, flags) = getbuf_info ();
              flags = flags | (1 shl 4);
              setbuf_info (file, dir, name, flags);
           }

  may be used to turn on overwrite mode for the current buffer.  Note
  that it is better exploit the fact that S-Lang is a stack based language
  and simply write the above function as:

           define set_overwrite_mode ()
           {
              setbuf_info (getbuf_info () | 0x10);
           }

  Here, `(1 shl 4)' has been written as the hexidecimal number `0x10'.

 SEE ALSO
   getbuf_info, setbuf, whatbuf
--------------------------------------------------------------

up

 SYNOPSIS
   up

 USAGE
   Integer up(Integer n);

 DESCRIPTION
  This function moves the current point up `n' lines and returns the
  number of lines actually moved.  The number returned will be less than
  `n' only if the top of the buffer is reached.

 SEE ALSO
   down, left, right
--------------------------------------------------------------

down

 SYNOPSIS
   down

 USAGE
   Integer down(Integer n);

 DESCRIPTION
  The `down' function is used to move the editing point down a number of
  lines specified by the integer `n'.  It returns the number of lines
  actually moved.  The number returned will be less than `n' only if the
  last line of the buffer has been reached.  The editing point will be
  left at the beginning of the line if it succeeds in going down more
  than one line.
  Example: The function

           define trim_buffer
           {
             bob ();
             do
               {
                  eol (); trim ();
               }
             while (down (1));
           }

  removes excess whitespace from the end of every line in the buffer.

 SEE ALSO
   down, left, right, goto_line
--------------------------------------------------------------

call

 SYNOPSIS
   call

 USAGE
   Void call(String f);

 DESCRIPTION
  The `call' function is used to execute an internal function which is
  not directly accessable to the S-Lang interpreter.

 SEE ALSO
   is_internal
--------------------------------------------------------------

eob

 SYNOPSIS
   eob

 USAGE
   Void eob();

 DESCRIPTION
  The `eob' function is used to move the current point to the end of the
  buffer.  The function `eobp' may be used to see if the current
  position is at the end of the buffer.

 SEE ALSO
   eobp, bob, bol, eol
--------------------------------------------------------------

unsetkey

 SYNOPSIS
   unsetkey

 USAGE
   Void unsetkey(String key);

 DESCRIPTION
  This function is used to remove the definition of the key sequence
  `key' from the "global" keymap.  This is sometimes necessary to bind
  new key sequences which conflict with other ones.  For example, the
  "global" keymap binds the keys `"^[[A"', `"^[[B"', `"^[[C"', and
  `"^[[D"' to the character movement functions.  Using
  `unsetkey("^[[A")' will remove the binding of `"^[[A"' from the global
  keymap but the other three will remain.  However, `unsetkey("^[[")'
  will remove the definition of all the above keys.  This might be
  necessary to bind, say, `"^[["' to some function.

 SEE ALSO
   setkey, undefinekey
--------------------------------------------------------------

bob

 SYNOPSIS
   bob

 USAGE
   Void bob ();

 DESCRIPTION
  The function `bob' is used to move the current editing point to the
  beginning of the buffer.  The function `bobp' may be used to determine
  if the editing point is at the beginning of the buffer or not.

 SEE ALSO
   bobp, eob, bol, eol
--------------------------------------------------------------

looking_at

 SYNOPSIS
   looking_at

 USAGE
   Integer looking_at (String s);

 DESCRIPTION
  This function returns non-zero if the characters immediately following
  the current editing point match the string specified by `s'.  Whether
  the match is case-sensitive or not depends upon the value of the
  variable `CASE_SEARCH'.  The function returns zero if there is no match.

 SEE ALSO
   ffind, fsearch, re_fsearch, bfind
--------------------------------------------------------------

del

 SYNOPSIS
   del

 USAGE
   Void del ();

 DESCRIPTION
  The `del' function deletes the character at the current editing
  position.  If the position is at the end of the buffer, nothing happens.
  If the deletion occurs at the end of a line, the next line will be joined
  with the current one.

 SEE ALSO
   eobp, erase_buffer, insert
--------------------------------------------------------------

markp

 SYNOPSIS
   markp

 USAGE
   Void markp ();

 DESCRIPTION
  This function returns a non-zero value if the mark is set; otherwise, it
  returns zero.  If a mark is set, a region is defined.

 SEE ALSO
   push_mark, pop_mark, check_region, push_spot
--------------------------------------------------------------

nwindows

 SYNOPSIS
   nwindows

 USAGE
   Integer nwindows ();

 DESCRIPTION
  The `nwindows' function returns the number of windows currently visible.
  If the variable `MINIBUFFER_ACTIVE' is non-zero, the minibuffer is busy and
  contributes to the number of windows.

 SEE ALSO
   splitwindow, onewindow, window_size
--------------------------------------------------------------

add_completion

 SYNOPSIS
   add_completion

 USAGE
   Void add_completion(String f);

 DESCRIPTION
  The `add_completion' function adds the user defined S-Lang function
  with name specified by the string `f' to the list of functions that
  are eligible for mini-buffer completion.  The function specified by
  `f' must be already defined before this function is called.  The
  S-Lang function `is_defined' may be used to test whether or not the
  function is defined.

 SEE ALSO
   read_with_completion, _add_completion
--------------------------------------------------------------

what_column

 SYNOPSIS
   what_column

 USAGE
   Integer what_column ();

 DESCRIPTION
  The `what_column' function returns the current column number expanding
  tabs, control characters, etc...  The beginning of the line is at
  column number one.

 SEE ALSO
   whatline, whatpos, goto_column, bolp, eolp
--------------------------------------------------------------

eobp

 SYNOPSIS
   eobp

 USAGE
   Integer eobp ();

 DESCRIPTION
  The functio `eobp' is used to determine if the current position is at
  the end of the buffer or not.  It returns a non-zero value if at the
  end of the buffer or zero if not.

 SEE ALSO
   eob, bolp, eolp
--------------------------------------------------------------

set_mode

 SYNOPSIS
   set_mode

 USAGE
    Void set_mode(String mode, Integer flags);

 DESCRIPTION
  This function sets buffer mode flags and status line mode name.  `mode'
  is a string which is displayed on the status line if the `%m' status
  line format specifier is used. The second argument, `flags' is an
  integer with the possible values:

           0 : no mode. Very generic
           1 : Wrap mode.  Lines are automatically wrapped at wrap column.
           2 : C mode.
           4 : Language mode.  Mode does not wrap but is useful for computer
               languages.
           8 : S-Lang mode
           16: Fortran mode highlighting
           32: TeX mode highlighting


 SEE ALSO
   whatmode, getbuf_info, setbuf_info.
--------------------------------------------------------------

buffer_visible

 SYNOPSIS
   buffer_visible

 USAGE
   Integer buffer_visible (String buf);

 DESCRIPTION
  This function is used to determine whether or not a buffer with name
  specified by the string `buf' is in a window or not.  More explicitly,
  it returns the number of windows containing `buf'.  This means that if
  `buf' does not occupy a window, it returns zero.  For Example,

           define find_buffer_in_window (buf)
           {
              !if (buffer_visible (buf)) return 0;
              pop2buf (buf);
              return 1;
           }

  is a function that moves to the window containing `buf' if `buf' is in
  a window.

 SEE ALSO
   bufferp, nwindows
--------------------------------------------------------------

exit_jed

 SYNOPSIS
   exit_jed

 USAGE
   Void exit_jed ();

 DESCRIPTION
  This function should be called to exit JED is a graceful and safe
  manner.  If any buffers have been modified but not saved, the user is
  queried about whether or not to save each one first.  `exit_jed' calls
  the S-Lang hook `exit_hook' if it is defined.  If `exit_hook' is
  defined, it must either call `quit_jed' or `exit_jed' to really exit
  the editor.  If `exit_jed' is called from `exit_hook', `exit_hook' will
  not be called again.  For example:

           define exit_hook ()
           {
             flush ("Really Exit?");
          
             forever
               {
                 switch (getkey () & 0x20)    % map to lowercase
                  { case 'y': exit_jed (); }
                  { case 'n': return; }
                 beep ();
               }
           }

  may be used to prompt user for confirmation of exit.

 SEE ALSO
   quit_jed, suspend, flush, getkey
--------------------------------------------------------------

set_color

 SYNOPSIS
   set_color

 USAGE
   Void set_color(String obj, String fg, String bg);

 DESCRIPTION
  This function sets the foreground and background colors of an object
  specified by the string `obj' to `fg' and `bg'.  The exact values of
  the strings `fg' and `bg' are system dependent.  For the X-Window
  system, they can be any string that the server understands, e.g.,
  `"SteelBlue"'.  For other systems, the color must be one of the
  following:

           "black"            "gray"
           "red"              "brightred"
           "green"            "brightgreen"
           "brown"            "yellow"
           "blue"             "brightblue"
           "magenta"          "brightmagenta"
           "cyan"             "brightcyan"
           "lightgray"        "white"

  One most terminals, the values in the second column have no affect
  when used as the background color.

  The valid names for `obj' are:

           "normal"      Default foreground/background
           "status"      The status window line
           "region"      Highlighted Regions
           "cursor"      Text Cursor (X-Windows)
           "menu"        The menu bar
           "error"       Error messages
           "message"     Other messages
           "dollar"      Color of the indicator that text extends beyond the
                          boundary of the window.

  If color syntax highlighting is enabled, the following object names
  are also meaningful:

           "number"      Numbers in C-mode and Equations in TeX-mode
           "delimiter"   Commas, semi-colons, etc...
           "keyword"     Language dependent
           "string"      Literal strings
           "comment"     Comments
           "operator"    Such as +, -, etc...
           "preprocess"  Preprocessor lines

  If line attributes are available, then you may also specifiy the color
  of the hidden line indicator:

           "..."         Hidden line indicator

  See a discussion in the JED User Manual for more discussion.

 SEE ALSO
   set_color_esc, set_column_colors, set_color_object
--------------------------------------------------------------

color_number

 SYNOPSIS
   color_number

 USAGE
   Integer color_number (String obj);

 DESCRIPTION
  This function returns the object number associated with the
  string `obj'.  Valid names for `obj' are as per `set_color'.

 SEE ALSO
   set_color, set_column_colors
--------------------------------------------------------------

set_color_esc

 SYNOPSIS
   set_color_esc

 USAGE
   Void set_color_esc (String object, String esc_seq);

 DESCRIPTION
  This function may be used to associate an escape sequence with an
  object.  The escape sequence will be sent to the terminal prior to
  sending updating the object.  It may be used on mono terminals to
  underline objects, etc...  The object names are the same names used by
  the `set_color' function.
  Note: Care should be exercised when using
  this function.  Also, one may need to experiment around a little to
  get escape sequences that work together.

 SEE ALSO
   set_color
--------------------------------------------------------------

extract_filename

 SYNOPSIS
   extract_filename

 USAGE
   String extract_filename (String filespec);

 DESCRIPTION
  This function may be used to separate the file name from the path of
  of a file specified by `filespec'.  For example, under Unix, the
  expression

           extract_filename ("/tmp/name");

  returns the string `"name"'.

 SEE ALSO
   expand_filename
--------------------------------------------------------------

trim

 SYNOPSIS
   trim

 USAGE
   Void trim ();

 DESCRIPTION
  The `trim' function removes all whitespace around the current editing
  point.  In this context, whitespace is considered to be any
  combination of tab and space characters.  In particular, it does not
  include the newline character.  This means that the `trim' function
  will not delete across lines.

 SEE ALSO
   skip_chars, skip_white, del, del_region
--------------------------------------------------------------

pop2buf

 SYNOPSIS
   pop2buf

 USAGE
   Void pop2buf (String buf);

 DESCRIPTION
  The `pop2buf' function will switch to another window and display the
  buffer specified by `buf' in it.  If `buf' does not exist, it will be
  created. If `buf' already exists in a window, the window containing
  `buf' will become the active one.  This function will create a new
  window if necessary.  All that is guaranteed is that the current
  window will continue to display the same buffer before and after the
  call to `pop2buf'.

 SEE ALSO
   whatbuf, pop2buf_whatbuf, setbuf, sw2buf, nwindows
--------------------------------------------------------------

pop2buf_whatbuf

 SYNOPSIS
   pop2buf_whatbuf

 USAGE
   String pop2buf_whatbuf (String buf);

 DESCRIPTION
  This function performs the same function as `pop2buf' except that the
  name of the buffer that `buf' replaced in the window is returned.
  This allows one to restore the buffer in window to what it was before
  the call to `pop2buf_whatbuf'.

 SEE ALSO
   pop2buf, whatbuf
--------------------------------------------------------------

copy_file

 SYNOPSIS
   copy_file

 USAGE
   Integer copy_file (String src, String dest);

 DESCRIPTION
  This function may be used to copy a file named `src' to a new file
  named `dest'.  It attempts to preserve the file access and modification
  times as well as the ownership and protection.

  It returns `0' upon success and `-1' upon failure.

 SEE ALSO
   rename_file, file_status
--------------------------------------------------------------

copy_region

 SYNOPSIS
   copy_region

 USAGE
   Void copy_region (String buf);

 DESCRIPTION
  This function may be used to copy a region defined by a mark and the
  current position to the buffered specified by the name `buf'. It does
  not delete the characters in region but it does pop the mark that
  determines the region.

 SEE ALSO
   insbuf, bufsubstr, push_mark, pop_mark, bufferp
--------------------------------------------------------------

insbuf

 SYNOPSIS
   insbuf

 USAGE
   Void insbuf (String buf);

 DESCRIPTION
  This function may be used to insert the contents of a buffer specified
  by the name `buf' into the current buffer.  The editing position is
  advanced to the end of the insertion.

 SEE ALSO
   copy_region, narrow, narrow_to_region
--------------------------------------------------------------

bolp

 SYNOPSIS
   bolp

 USAGE
   Integer bolp ();

 DESCRIPTION
  `bolp' is used to test if the current position is at the beginning of
  a line or not.  It returns non-zero if the position is at the
  beginning of a line or zero if not.

 SEE ALSO
   bol, eolp, bobp, eobp
--------------------------------------------------------------

beep

 SYNOPSIS
   beep

 USAGE
   Void beep ();

 DESCRIPTION
  The `beep' function causes the terminal to beep according to the value
  of the variable `IGNORE_BEEP'.

 SEE ALSO
   tt_send
--------------------------------------------------------------

onewindow

 SYNOPSIS
   onewindow

 USAGE
   Void onewindow ();

 DESCRIPTION
  This function deletes all other windows except the current window and
  the mini-buffer window.

 SEE ALSO
   nwindows, splitwindow, enlargewin
--------------------------------------------------------------

pop_spot

 SYNOPSIS
   pop_spot

 USAGE
   Void pop_spot ();

 DESCRIPTION
  This function is used after a call to `push_spot' to return to the
  editing position at the last call to `push_spot' in the current buffer.

 SEE ALSO
   push_spot, pop_mark
--------------------------------------------------------------

push_spot

 SYNOPSIS
   push_spot

 USAGE
   Void push_spot ();

 DESCRIPTION
  `push_spot' pushes the location of the current buffer location onto a
  stack.  This function does not set the mark.  The function `push_mark'
  should be used for that purpose. The spot can be returned to using the
  function `pop_spot'.
  Note: Spots are local to each buffer.  It is not
  possible to call `push_spot' from one buffer and then subsequently
  call `pop_spot' from another buffer to return to the position in the
  first buffer.  For this purpose, one must use user marks instead.

 SEE ALSO
   pop_spot, push_mark, create_user_mark
--------------------------------------------------------------

sw2buf

 SYNOPSIS
   sw2buf

 USAGE
   Void sw2buf (String buf);

 DESCRIPTION
  This function is used to switch to another buffer whose name is
  specified by the parameter `buf'.  If the buffer specified by `buf'
  does not exist, one will be created.
  Note: Unlike `setbuf', the change
  to the new buffer is more permanent in the sense that when control
  passed back out of S-Lang to the main editor loop, if the current
  buffer at that time is the buffer specified here, this buffer will be
  attached to the window.

 SEE ALSO
   setbuf, pop2buf, bufferp
--------------------------------------------------------------

tt_send

 SYNOPSIS
   tt_send

 USAGE
   Void tt_send (String s);

 DESCRIPTION
  This function may be used to send a string specified by `s' directly
  to the terminal with no interference by the editor.  One should
  exercise caution when using this routine since it may interfere with
  JED's screen management routines forcing one to redraw the screen.
  Nevertheless, it can serve a useful purpose.  For example, when run in
  an XTerm window, using

           tt_send ("\e[?9h");

  will enable sending mouse click information to JED encoded as
  keypresses.

 SEE ALSO
   beep
--------------------------------------------------------------

eolp

 SYNOPSIS
   eolp

 USAGE
   Integer eolp ();

 DESCRIPTION
  This function may be used to determine whether or not the current
  position is at the end of a line ot not.  If it is, the routine
  returns a non-zero value; otherwise it returns zero.

 SEE ALSO
   eol, bolp, eobp, bobp
--------------------------------------------------------------

what_keymap

 SYNOPSIS
   what_keymap

 USAGE
   String what_keymap ();

 DESCRIPTION
  This function returns the name of the keymap associated with the
  current buffer.

 SEE ALSO
   create_keymap, keymap_p
--------------------------------------------------------------

find_file

 SYNOPSIS
   find_file

 USAGE
   Integer find_file (String name);

 DESCRIPTION
  The `find_file' function switches to the buffer associated with the
  file specified by `name'.  If no such buffer exists, one is created
  and the file specified by `name' is read from the disk and associated
  with the new buffer.  The buffer will also become attached to the
  current window.  Use the `read_file' function to find a file but not
  associate it with the current window.

 SEE ALSO
   read_file
--------------------------------------------------------------

set_status_line

 SYNOPSIS
   set_status_line

 USAGE
   set_status_line (String format, Integer flag);

 DESCRIPTION
  This function may be used to customize the status line of the current
  window according to the string `format'.  If the second parameter
  `flag' is non-zero, `format' will apply to the global format string;
  otherwise it applies to current buffer only.  Newly created buffer
  inherit the global format string when they appear in a window.
  The format string may contain the following format specifiers:

           %b   buffer name
           %f   file name
           %v   JED version
           %t   current time --- only used if variable DISPLAY_TIME is non-zero
           %p   line number or percent string
           %%   literal '%' character
           %m   mode string
           %a   If abbrev mode, expands to "abbrev"
           %n   If buffer is narrowed, expands to "Narrow"
           %o   If overwrite mode, expands to "Ovwrt"
           %c   If the variable LINENUMBERS is 2, this expands to the current
                  column number.

  For example, the default status line used by JED's EDT emulation uses
  the format string:

           "(Jed %v) EDT: %b   (%m%a%n%o)  %p,%c   Advance   %t"


 SEE ALSO
   set_mode, narrow, whatbuf, getbuf_info
--------------------------------------------------------------

bury_buffer

 SYNOPSIS
   bury_buffer

 USAGE
   Void bury_buffer (String name);

 DESCRIPTION
  The `bury_buffer' function may be used to make it unlikely for the
  buffer specified by the paramter `name' to appear in a window.

 SEE ALSO
   sw2buf, getbuf_info
--------------------------------------------------------------

dupmark

 SYNOPSIS
   dupmark

 USAGE
   Integer dupmark ();

 DESCRIPTION
  This function returns zero if the mark is not set or, if the mark is
  set, a duplicate of it is pushed onto the mark stack and a non-zero
  value is returned.

 SEE ALSO
   push_mark, markp, pop_mark
--------------------------------------------------------------

erase_buffer

 SYNOPSIS
   erase_buffer

 USAGE
   erase_buffer ();

 DESCRIPTION
  The `erase_buffer' function erases all text from the current buffer.
  However, it does not delete the buffer itself.

  Note: This function destroys all undo information associated with the
  buffer making it impossible to undo the result of this function.

 SEE ALSO
   delbuf, del
--------------------------------------------------------------

window_info

 SYNOPSIS
   window_info

 USAGE
   Integer window_info(Integer item);

 DESCRIPTION
  The `window_info' function returns information concerning the current
  window.  The actual information that is returned depends on the `item'
  parameter.  Acceptable values of `item' and the description of the
  information returned is given in the following table:

           'r'  : Number of rows
           'w'  : Width of window
           'c'  : Starting column (from 1)
           't'  : Screen line of top line of window (from 1)
   \seealso{otherwindow, nwindows}

  Related Variables: `SCREEN_HEIGHT', `SCREEN_WIDTH'
--------------------------------------------------------------

copy_region_to_kill_array

 SYNOPSIS
   copy_region_to_kill_array

 USAGE
   Void copy_region_to_kill_array (Integer n);

 DESCRIPTION
  This function copies the currently defined region to the nth element,
  specified by `n', of an internal array of character strings replacing
  what is currently there.

  Note: This function is not available on 16 bit systems.

 SEE ALSO
   insert_from_kill_array, append_region_kill_array
--------------------------------------------------------------

append_region_to_kill_array

 SYNOPSIS
   append_region_to_kill_array

 USAGE
   Void append_region_to_kill_array (Integer n);

 DESCRIPTION
  This function appends the currently defined region to the contents of
  nth element, specified by `n', of an internal array of character strings.

  Note: This function is not available on 16 bit systems.

 SEE ALSO
   insert_from_kill_array, copy_region_to_kill_array
--------------------------------------------------------------

insert_from_kill_array

 SYNOPSIS
   insert_from_kill_array

 USAGE
   Void insert_from_kill_array (Integer n);

 DESCRIPTION
  This function inserts the contents of the nth element, specified by
  `n', of an internal array of character strings.

  Note: This function is not available on 16 bit systems.

 SEE ALSO
   insert_from_kill_array, copy_region_to_kill_array
--------------------------------------------------------------

goto_column

 SYNOPSIS
   goto_column

 USAGE
   Void goto_column (Integer n);

 DESCRIPTION
  This function moves the current editing point to the column specified
  by the parameter `n'.  It will insert a combination of spaces and tabs
  if necessary to achieve the goal.
  Note: The actual character number offset from the beginning of the
  line depends upon tab settings and the visual expansion of other
  control characters.

 SEE ALSO
   goto_column_best_try, what_column, left, right, goto_line
--------------------------------------------------------------

goto_column_best_try

 SYNOPSIS
   goto_column_best_try

 USAGE
   Integer goto_column_best_try (Integer c);

 DESCRIPTION
  This function is like `goto_column' except that it will not insert
  whitespace.  This means that it may fail to achieve the column number
  specified by the argument `c'.  It returns the current column number.

 SEE ALSO
   goto_column, what_column
--------------------------------------------------------------

goto_line

 SYNOPSIS
   goto_line

 USAGE
   Void goto_line (Integer n);

 DESCRIPTION
  The `goto_line' function may be used to move to a specific line number
  specified by the parameter `n'.
  Note: The actual column that the editing point will be left in is
  indeterminate.

 SEE ALSO
   what_line, goto_column, down, up.
--------------------------------------------------------------

pop_mark

 SYNOPSIS
   pop_mark

 USAGE
   pop_mark (Integer g);

 DESCRIPTION
  `pop_mark' pops the most recent mark pushed onto the mark stack.  If
  the argument `g' is non-zero, the editing position will be moved to
  the location of the mark.  However, if `g' is zero, the editing
  position will be unchanged.

 SEE ALSO
   push_mark, pop_spot, markp, check_region, goto_user_mark
--------------------------------------------------------------

read_mini

 SYNOPSIS
   read_mini

 USAGE
   String read_mini (String prompt, String dflt, String init);

 DESCRIPTION
  The `read_mini' function reads a line of input from the user in the
  mini-buffer.  The first parameter, `prompt', is used to prompt the
  user.  The second parameter, `dflt', is what is returned as a default
  value if the user simply presses the return key.  The final parameter,
  `init', is stuffed into the mini-buffer for editing by the user.
  For example,

           define search_whole_buffer ()
           {
             variable str;
             str = read_mini ("Search for:", "", "");
             !if (strlen (str)) return;
             !if (fsearch (str))
                {
                  push_mark (); bob ();
                  if (fsearch (str)) pop_mark (0);
                  else pop_mark (1);
                    {
                       pop_mark (1);
                       error ("Not found");
                    }
                }
           }

  reads a string from the user and then searches forward for it and if
  not found, it resumes the search from the beginning of the buffer.
  Note: If the user aborts the function `mini_read' by pressing the
  keyboard quit character (e.g., Ctrl-G), an error is signaled.  This
  error can be caught by an `ERROR_BLOCK' and the appropriate action
  taken. Also if the mini-buffer is already in use, this function should
  not be called.  The variable `MINIBUFFER_ACTIVE' may be checked to
  determine if this is the case or not.

 SEE ALSO
   read_with_completion, getkey, input_pending
--------------------------------------------------------------

file_status

 SYNOPSIS
   file_status

 USAGE
   Integer file_status (String filename);

 DESCRIPTION
  The `file_status' function returns information about a file specified
  by the name `filename'.  It returns an integer describing the file
  type:
   2     file is a directory
   1     file exists and is not a directory
   0     file does not exist.
  -1     no access.
  -2     path invalid
  -3     unknown error
--------------------------------------------------------------

skip_white

 SYNOPSIS
   skip_white

 USAGE
   Void skip_white ();

 DESCRIPTION
  The `skip_white' function moves the current point forward until it
  reaches a non-whitespace character or the end of the current line,
  whichever happens first.  In this context, whitespace is considered to
  be any combination of space and tab characters.  To skip newline
  characters as well, the function `skip_chars' may be used.

 SEE ALSO
   bskip_chars, what_char, trim, right
--------------------------------------------------------------

bobp

 SYNOPSIS
   bobp

 USAGE
   Integer bobp ();

 DESCRIPTION
  The `bolp' function is used to determine if the current position is at
  the beginning of the buffer or not.  If so, it returns a non-zero
  value.  However, if it is not, it returns zero.  This simple example,

           define is_buffer_empty ()
           {
             return bobp () and eobp ();
           }

  returns non-zero if the buffer is empty; otherwise, it returns zero.

 SEE ALSO
   bob, eobp, bolp, eolp
--------------------------------------------------------------

flush

 SYNOPSIS
   flush

 USAGE
   Void flush (String msg);

 DESCRIPTION
  The `flush' function behaves like `message' except that it immediately
  displays its argument `msg' as a message in the mini-buffer.  That is,
  it is not necessary to call `update' to see the message appear.

 SEE ALSO
   message, error
--------------------------------------------------------------

input_pending

 SYNOPSIS
   input_pending

 USAGE
   Integer input_pending (Integer tsecs);

 DESCRIPTION
  This function is used to see if keyboard input is available to be read
  or not. The paramter `tsecs' is the amount of time to wait for input
  before returning if input is not available.  The time unit for `tsecs'
  is one-tenth of a second.  That is, to wait up to one second, pass a
  value of ten to this routine.  It returns zero if no input is
  available, otherwise it returns non-zero.  As an example,

           define peek_key ()
           {
             variable ch;
             !if (input_pending (0)) return -1;
             ch = getkey ();
             ungetkey (ch);
             return ch;
           }

  returns the value of the next character to be read if one is
  available; otherwise, it returns -1.

 SEE ALSO
   getkey, ungetkey
--------------------------------------------------------------

usleep

 SYNOPSIS
   usleep

 USAGE
   Void usleep (Integer ms);

 DESCRIPTION
  A call to usleep will cause the editor to pause for `ms' milliseconds.

 SEE ALSO
   input_psnding
--------------------------------------------------------------

insert_file

 SYNOPSIS
   insert_file

 USAGE
   Integer insert_file (String f);

 DESCRIPTION
  This function may be used to insert the contents of a file named `f'
  into the buffer at the current position.  The current editing point
  will be placed at the end of the inserted text.  The function returns
  `-1' if the file was unable to be opened; otherwise it returns the
  number of lines inserted.  This number can be zero if the file is empty.

 SEE ALSO
   read_file, find_file, insert
--------------------------------------------------------------

keymap_p

 SYNOPSIS
   keymap_p

 USAGE
   Integer keymap_p (String kmap);

 DESCRIPTION
  The `keymap_p' function may be used to determine whether or not a
  keymap with name `kmap' exists.  If the keymap specified by `kmap'
  exists, the function returns non-zero.  It returns zero if the keymap
  does not exist.

 SEE ALSO
   make_keymap, definekey
--------------------------------------------------------------

what_char

 SYNOPSIS
   what_char

 USAGE
   Integer what_char ();

 DESCRIPTION
  The `what_char' function returns the value of the character at the
  current position as an integer in the range 0 to 256.  This simple
  example,

           while (not (eolp ()))
             {
                if (what_char () == '_')
                  {
                     del (); insert ("\\_");
                  }
             }

  has the effect of replacing all underscore characters on the current
  line with a backslash-underscore combination.

 SEE ALSO
   looking_at
--------------------------------------------------------------

recenter

 SYNOPSIS
   recenter

 USAGE
   Void recenter (Integer nth);

 DESCRIPTION
  This function may be used to scroll the window such that the `nth' line
  of the window contains the current line.  If `nth' is zero, the current
  line will be placed at the center of the window and the screen will be
  completely redrawn.

 SEE ALSO
   nwindows, window_info
--------------------------------------------------------------

bufferp

 SYNOPSIS
   bufferp

 USAGE
   Integer bufferp (String buf);

 DESCRIPTION
  This function is used to see if a buffer exists or not.  If a buffer with
  name `buf' exists, it returns a non-zero value.  If it does not exist,
  it returns zero.

 SEE ALSO
   setbuf, getbuf_info
--------------------------------------------------------------

get_key_function

 SYNOPSIS
   get_key_function

 USAGE
   String get_key_function ();

 DESCRIPTION
  `get_key_function' waits for a key to be pressed and returns a string
  that represents the binding of the key.  If the key has no binding
  the empty string is returned.  Otherwise, it also returns an integer
  that describes whether or not the function is an internal one.  If
  the function is internal, `1' will be returned; otherwise zero will
  be returned to indicate that the binding is either to an S-Lang
  function or a macro.  If it is a macro, the first character of the
  of returned string will be the `@' character.

 SEE ALSO
   getkey, input_pending
--------------------------------------------------------------

dump_bindings

 SYNOPSIS
   dump_bindings

 USAGE
   Void dump_bindings(String map);

 DESCRIPTION
  This functions inserts a formatted list of keybindings for the keymap
  specified by `map' into the buffer at the current point.

 SEE ALSO
   get_key_function
--------------------------------------------------------------

undefinekey

 SYNOPSIS
   undefinekey

 USAGE
   Void undefinekey (String key, String kmap);

 DESCRIPTION
  This function may be used to remove a keybinding from a specified
  keymap.  The key sequence is given by the parameter `key' and the
  keymap is specified by the second parameter `kmap'.

 SEE ALSO
   unsetkey, definekey, what_keymap
--------------------------------------------------------------

getpid

 SYNOPSIS
   getpid

 USAGE
   Integer getpid ();

 DESCRIPTION
  This function returns the process identification number for the current
  editor process.
--------------------------------------------------------------

update

 SYNOPSIS
   update

 USAGE
   Void update (Integer f);

 DESCRIPTION
  This function may be called to update the display.  If the parameter
  `f' is non-zero, the display will be updated even if there is input
  pending.  If `f' is zero, the display may only be partially updated if
  input is pending.

 SEE ALSO
   input_pending, flush
--------------------------------------------------------------

skip_word_chars

 SYNOPSIS
   skip_word_chars

 USAGE
   Void skip_word_chars ();

 DESCRIPTION
  This function moves the current editing point forward across all
  characters that constitute a word until a non-word character is
  encountered. Characters that make up a word are set by the
  `define_word' function.

 SEE ALSO
   define_word, skip_non_word_chars, skip_chars, bskip_word_chars
--------------------------------------------------------------

skip_non_word_chars

 SYNOPSIS
   skip_non_word_chars

 USAGE
   Void skip_non_word_chars ();

 DESCRIPTION
  This function moves the current editing point forward past all
  non-word characters until a word character is encountered.
  Characters that make up a word are set by the `define_word' function.

 SEE ALSO
   define_word, skip_word_chars, skip_chars, bskip_non_word_chars
--------------------------------------------------------------

bskip_word_chars

 SYNOPSIS
   bskip_word_chars

 USAGE
   Void bskip_word_chars ();

 DESCRIPTION
  This function moves the current editing point backward past all
  word characters until a non-word character is encountered.
  Characters that make up a word are set by the `define_word' function.

 SEE ALSO
   define_word, skip_word_chars, bskip_chars, bskip_non_word_chars
--------------------------------------------------------------

bskip_non_word_chars

 SYNOPSIS
   bskip_non_word_chars

 USAGE
   Void bskip_word_chars ();

 DESCRIPTION
  This function moves the current editing point backward past all
  non-word characters until a word character is encountered.
  Characters that make up a word are set by the `define_word' function.

 SEE ALSO
   define_word, skip_non_word_chars, bskip_chars, bskip_word_chars
--------------------------------------------------------------

which_key

 SYNOPSIS
   which_key

 USAGE
   Integer which_key (String f);

 DESCRIPTION
  The `which_key' function returns the the number of keys that are
  bound to the function `f' in the current keymap.  It also returns
  that number of key sequences with control characters expanded as the
  two character sequence `^' and the the whose ascii value is the
  control character + 64. For example,

           define insert_key_bindings (f)
           {
              variable n, key;
              n = which_key (f);
              loop (n)
                {
                    str = ();
                    insert (str);
                    insert ("\n");
                }
           }

  inserts into the buffer all the key sequences that are bound to the
  function `f'.

 SEE ALSO
   get_key_function, setkey, what_keymap
--------------------------------------------------------------

whitespace

 SYNOPSIS
   whitespace

 USAGE
   whitespace (Integer n);

 DESCRIPTION
  The `whitespace' function inserts white space of length `n' into the
  current buffer using a combination of spaces and tabs.  The actual
  combination of spaces and tabs used depends upon the buffer local
  variable `TAB'.  In particular, if `TAB' is zero, no tab characters
  will be used for the expansion.

 SEE ALSO
   insert, trim, goto_column
--------------------------------------------------------------

enlargewin

 SYNOPSIS
   enlargewin

 USAGE
   Void enlargewin ();

 DESCRIPTION
  This function increases the size of the current window by one line by
  adjusting the size of the other windows accordingly.

 SEE ALSO
   window_info, onewindow
--------------------------------------------------------------

splitwindow

 SYNOPSIS
   splitwindow

 USAGE
   Void splitwindow ();

 DESCRIPTION
  This function splits the current window vertically creating another
  window that carries the current window's buffer.

 SEE ALSO
   onewindow, enlargewin, window_info
--------------------------------------------------------------

file_time_compare

 SYNOPSIS
   file_time_compare

 USAGE
   Integer file_time_cmp (String file1, String file2);

 DESCRIPTION
  This function compares the modification times of two files, `file1'
  and `file2'. It returns an integer that is either positive, negative,
  or zero integer for `file1 > file2', `file1 < file2',
  or `file1 == file2', respectively.  In this context, the comparison
  operators are comparing file modification times.  That is, the
  operator `>' should be read ``is more recent than''.  The convention
  adopted by this routine is that if a file does not exist, its
  modification time is taken to be at the beginning of time.  Thus, if
  `f' exists, but `g' does not, the `file_time_compare (f, g)' will
return a positive number. \seealso{file_status, time}
--------------------------------------------------------------

xform_region

 SYNOPSIS
   xform_region

 USAGE
   Void xform_region (Integer how);

 DESCRIPTION
  This function changes the characters in the region in a way specified
  by the parameter `how'.  This is an integer that can be any of of the
  following:

           'u'       Upcase_region
           'd'       Downcase_region
           'c'       Capitalize region

  Anything else will change case of region.

 SEE ALSO
   translate_region, define_case
--------------------------------------------------------------

skip_chars

 SYNOPSIS
   skip_chars

 USAGE
   Void skip_chars(String s);

 DESCRIPTION
  This fnction may be used to move the editing point forward past all
  characters in string `s' which contains the chars to skip, or a range
  of characters.  A character range is denoted by two charcters
  separated by a hyphen.  If the first character of the string `s' is a
  `'^'' character, then the list of characters actually denotes the
  complement of the set of characters to be skipped.  To explicitly
  include the hyphen character in the list, it must be either the first
  or the second character of the string, depending upon whether or not
  the `'^'' character is present. So for example,

           skip_chars ("- \t0-9ai-o_");

  will skip the hyphen, space, tab, numerals `0' to `9', the letter `a',
  the letters `i' to `o', and underscore.  An example which illustrates
  the complement of a range is

           skip_chars("^A-Za-z");

  which skips all characters except the letters.
  Note: The backslash character may be used to escape only the first
  character in the string.  That is, `"\\^"' is to be used to skip over
  `^' characters.

 SEE ALSO
   bskip_chars, skip_white
--------------------------------------------------------------

command_line_arg

 SYNOPSIS
   command_line_arg

 USAGE
   String command_line_argv (Integer n);

 DESCRIPTION
  This function may be used to determine the command line parameters
  that invoked the editor.  The parameter `n' is an integer the range zero
  up-to but not including the value of the variable `MAIN_ARGC'.
  Related Variables: `MAIN_ARGC'
--------------------------------------------------------------

set_file_translation

 SYNOPSIS
   set_file_translation

 USAGE
   set_file_translation (Integer n);

 DESCRIPTION
  This function affects only the way the next file is opened.  Its
  affect does not last beyond that.  If it the value of the parameter
  is 1, the next file will be opened in binary mode.  If the parameter is
  zero, the file will be opened in text mode.
--------------------------------------------------------------

pipe_region

 SYNOPSIS
   pipe_region

 USAGE
   Integer pipe_region (String cmd);

 DESCRIPTION
  The `pipe_region' function executes `cmd' in a separate process and
  sends the region of characters defined by the mark and the current
  point to the standard input of the process.  It successful, it returns
  the exit status of the process.  Upon failure it signals an error.
  Note: This function is only available for Unix and OS/2 systems.

 SEE ALSO
   run_shell_cmd, push_mark
--------------------------------------------------------------

run_shell_cmd

 SYNOPSIS
   run_shell_cmd

 USAGE
   Void run_shell_cmd (String cmd);

 DESCRIPTION
  The `run_shell_cmd' function may be used to run `cmd' in a separate
  process.  Any output generated by the process is inserted into the
  buffer at the current point.  It generates a S-Lang error if the
  process specified by `cmd' could not be opened.  Otherwise, it
  returns the exit status of the process.
--------------------------------------------------------------

mkdir

 SYNOPSIS
   mkdir

 USAGE
   Integer mkdir (String dir);

 DESCRIPTION
  The `mkdir' function may be used to create a new directory with name
  specified by `dir'.  It returns zero if the directory could not be
  created or non-zero if a directory with the specified name was created.

 SEE ALSO
   rmdir, file_status
--------------------------------------------------------------

rmdir

 SYNOPSIS
   rmdir

 USAGE
   Integer rmdir (dir);

 DESCRIPTION
  `rmdir' may be used to delete the directory specified by the name
  `dir'.  If the directory was sucessfully deleted, the function
  returns a non-zero value.  Otherwise, the directory could not be
  deleted and zero will be returned.

 SEE ALSO
   mkdir, delete_file
--------------------------------------------------------------

append_region_to_file

 SYNOPSIS
   append_region_to_file

 USAGE
   Integer append_region_to_file (String file);

 DESCRIPTION
  Appends a marked region to `file' returning number of lines written or -1
  on error.  This does NOT modify a buffer visiting the file; however,
  it does flag the buffer as being changed on disk.
  \done

autosave

 SYNOPSIS
   autosave

 USAGE
   Void autosave ();

 DESCRIPTION
  The `autosave' function saves the current buffer in an auto save file
  if the buffer has been marked for the auto save operation.

 SEE ALSO
   setbuf_info, autosaveall
--------------------------------------------------------------

autosaveall

 SYNOPSIS
   autosaveall

 USAGE
   Void autosaveall ();

 DESCRIPTION
  This function is like `autosave' except that it causes all files
  marked for the auto save operation to be auto-saved.

 SEE ALSO
   autosave, setbuf_info
--------------------------------------------------------------

backward_paragraph

 SYNOPSIS
   backward_paragraph

 USAGE
   Void backward_paragraph ();

 DESCRIPTION
  This function moves the current editing point backward past the
  current paragraph to the line that is a paragraph separator.  Such a
  line is determined by the S-Lang hook `is_paragraph_separator'.  This
  hook can be modified on a buffer by buffer basis by using the
  function `set_buffer_hook'.

 SEE ALSO
   forward_paragraph, set_buffer_hook
--------------------------------------------------------------

blank_rect

 SYNOPSIS
   blank_rect

 DESCRIPTION
   The `blank_rect' function replaces all text in the rectangle defined by
  the current editing point and the mark by spaces.

 SEE ALSO
   push_mark, kill_rect, insert_rect, copy_rect
--------------------------------------------------------------

bskip_chars

 SYNOPSIS
   bskip_chars

 USAGE
   Void bskip_chars (String str);

 DESCRIPTION
  This function may be used to skip past all characters defined by the
  string `str'.  See `skip_chars' for the definition of `str'.
  The following example illustrates how to skip past all whitespace
  including newline characters:

           bskip_chars (" \t\n");


 SEE ALSO
   skip_chars, left
--------------------------------------------------------------

buffer_list

 SYNOPSIS
   buffer_list

 USAGE
   Integer buffer_list ();

 DESCRIPTION
  This function returns an integer indicating the number of buffers and
  leaves the names of the buffers on the stack.  For example, the
  following function displays the names of all buffers attached to
  files:

           define show_buffers ()
           {
              variable b, str = "", file;
              loop (buffer_list ())
                {
                    b = ();
                    setbuf (b);
                    (file,,,) = getbuf_info ();
                    if (strlen (file)) str = strcat (str, strcat (" ", b));
                }
              message (str);
           }


 SEE ALSO
   getbuf_info, whatbuf
--------------------------------------------------------------

check_region

 SYNOPSIS
   check_region

 USAGE
   Void check_region (Integer ps);

 DESCRIPTION
  This function checks to see if a region is defined and may exchange
  the current editing point and the mark to define a canonical region.
  If the mark is not set, it signals an S-Lang error.  A canonical
  region is one with the mark set earlier in the buffer than than the
  editing point.  Always call this if using a region which requires
  such a situation.

  If the argument `ps' is non-zero, `push_spot' will be called,
  otherwise, `ps' is zero and it will not be called.

  As an example, the following function counts the number of lines in
  a region:

           define count_lines_region ()
           {
              variable n;
              check_region (1);   % spot pushed
              narrow ();
              n = what_line ();
              widen ();
              pop_spot ();
              return n;
            }


 SEE ALSO
   markp, push_mark
--------------------------------------------------------------

copy_rect

 SYNOPSIS
   copy_rect

 USAGE
   Void copy_rect ();

 DESCRIPTION
  The `copy_rect' function is used to copy the contents of the
  currently defined rectangle to the rectangle buffer.  It overwrites
  the previous contents of the rectangle buffer.  A rectangle is defined
  by the diagonal formed by the mark and the current point.

 SEE ALSO
   insert_rect, kill_rect, blank_rect
--------------------------------------------------------------

define_word

 SYNOPSIS
   define_word

 USAGE
   Void define_word (String s);

 DESCRIPTION
  This function is used to define the set of characters that form a
  word. The string `s' consists of those characters or ranges of
  characters that define the word.  For example, to define only the
  characters `A-Z' and `a-z' as word characters, use:

           define_word ("A-Za-z");

  To include a hyphen as part of a word, it must be the first character
  of the control string `s'.  So for example,

           define_word ("-i-n");

  defines a word to consist only of the letters `i' to `n' and the
  hyphen character.
--------------------------------------------------------------

delbuf

 SYNOPSIS
   delbuf

 USAGE
   Void delbuf (String buf);

 DESCRIPTION
  `delbuf' may be used to delete a buffer with the name specified by
  `buf'.  If the buffer does not exist, a S-Lang error will be generated.

 SEE ALSO
   whatbuf, bufferp, sw2buf
--------------------------------------------------------------

delete_file

 SYNOPSIS
   delete_file

 USAGE
   Integer delete_file (String file);

 DESCRIPTION
  This function may be used to delete a file specified by the `file'
  parameter.  It returns non-zero if the file was sucessfully deleted
  or zero otherwise.

 SEE ALSO
   rmdir
--------------------------------------------------------------

directory

 SYNOPSIS
   directory

 DESCRIPTION
   returns number of files and list of files which match filename.
      On unix, this defaults to filename*.  It is primarily useful for
      DOS and VMS to expand wilcard filenames
      \done

evalbuffer

 SYNOPSIS
   evalbuffer

 USAGE
   Void evalbuffer ();

 DESCRIPTION
  This function causes the current buffer to be sent to the S-Lang
  interpreter for evaluation.  If an error is encountered while parsing
  the buffer, the cursor will be placed at the location of the error.

 SEE ALSO
   evalfile
--------------------------------------------------------------

expand_filename

 SYNOPSIS
   expand_filename

 USAGE
   String expand_filename (String file);

 DESCRIPTION
  The `expand_filename' function expands a file to a canonical form.
  For example, under Unix, if `file' has the value `"/a/b/../c/d"', it
  returns `"/a/c/d"'.  Similarly, if `file' has the value
  `"/a/b/c//d/e"', `"/d/e"' is returned.
--------------------------------------------------------------

file_changed_on_disk

 SYNOPSIS
   file_changed_on_disk

 USAGE
   Integer file_changed_on_disk (String fn);

 DESCRIPTION
  This function may be used to determine if the disk file specified by the
  parameter `fn' is more recent than the current buffer.

 SEE ALSO
   file_time_compare
--------------------------------------------------------------

forward_paragraph

 SYNOPSIS
   forward_paragraph

 USAGE
   Void forward_paragraph ();

 DESCRIPTION
  This function moves the current editing point forward past the end of
  the current paragraph.  Paragraph delimiters are defined through either
  a buffer hook or via the hook `is_paragraph_separator'.

 SEE ALSO
   backward_paragraph, set_buffer_hook
--------------------------------------------------------------

getkey

 SYNOPSIS
   getkey

 USAGE
   Integer getkey ();

 DESCRIPTION
  The `getkey' function may be used to read an input character from the
  keyboard.  It returns an integer in the range 0 to 256 which represents
  the ASCII or extended ASCII value of the character.

 SEE ALSO
   input_pending, ungetkey
--------------------------------------------------------------

indent_line

 SYNOPSIS
   indent_line

 USAGE
   Void indent_line ();

 DESCRIPTION
  The `indent_line' line function indents the current line in a manner
  which depends upon the current buffer.  The actual function that gets
  called is set via a prior call the `set_buffer_hook' to set the indent
  hook.  The default value is to indent the line to the indentation
  level of the previous line.

 SEE ALSO
   set_buffer_hook
--------------------------------------------------------------

insert_rect

 SYNOPSIS
   insert_rect

 USAGE
   insert_rect ();

 DESCRIPTION
  The `insert_rect' function inserts the contents of the rectangle buffer
  at the current editing point.  The rectangle buffer is not modified.
  Any text that the rectangle would overwrite is moved to the right by an
  amount that is equal to the width of the rectangle.

 SEE ALSO
   kill_rect, blank_rect, copy_rect
--------------------------------------------------------------

kill_rect

 SYNOPSIS
   kill_rect

 USAGE
   Void kill_rect ();

 DESCRIPTION
  This function deletes the rectangle defined by the mark and the current
  point.  The contents of the rectangle are saved in the rectangle buffer
  for later retrieval via the `insert_rect' function.  The previous
  contents of the rectangle buffer will be lost.

 SEE ALSO
   insert_rect, blank_rect, copy_rect
--------------------------------------------------------------

make_keymap

 SYNOPSIS
   make_keymap

 USAGE
   Void make_keymap (String km);

 DESCRIPTION
  The `make_keymap' function creates a keymap with a name specified by
  the `km' parameter.  The new keymap is an exact copy of the
  pre-defined `"global"' keymap.

 SEE ALSO
   use_keymap, keymap_p, definekey, setkey
--------------------------------------------------------------

map_input

 SYNOPSIS
   map_input

 USAGE
   Void map_input (Integer x, Integer y);

 DESCRIPTION
  The `map_input' function may be used to remap an input character with
  ascii value `x' from the keyboard to a different character with ascii
  value `y'.  This mapping can be quite useful because it takes place
  before the editor interprets the character. One simply use of this
  function is to swap the backspace and delete characters.  Since the
  backspace character has an ascii value of `8' and the delete character
  has ascii value `127', the statement

           map_input (8, 127);

  maps the backspace character to a delete character and

           map_input (127, 8);

  maps the delete character to a backspace character.  Used together,
  these two statement effectively swap the delete and backspace keys.

 SEE ALSO
   getkey
--------------------------------------------------------------

narrow_to_region

 SYNOPSIS
   narrow_to_region

 USAGE
   Void narrow_to_region (void);

 DESCRIPTION
  The `narrow_to_region' function behaves like the `narrow' function
  that `narrow' operates on lines and `narrow_to_region' restricts
  editing to only characters within the region.

 SEE ALSO
   widen_region, narrow.
--------------------------------------------------------------

narrow

 SYNOPSIS
   narrow

 USAGE
   Void narrow ();

 DESCRIPTION
  This function may be used to restict editing to the region of lines
  between the mark and the editing point.  The region includes the line
  containing the mark as well as the line at the current point. All
  other lines outside this region are completely inacessable without
  first lifting the restriction using the `widen' function. As a simple
  example, suppose that there is a function called `print_buffer' that
  operates on the entire buffer.  Then the following function will work
  on a region of lines:

           define print_region ()
           {
              narrow ();
              print_buffer ();
              widen ();
           }

  The `narrow' function will signal an error if the mark is not set.
  Note also that the narrow function may be used recursively in the
  sense that a narrowed region may be further restricted using the
  `narrow' function.  For each narrow, the `widen' function must be called
  to lift each restriction.

 SEE ALSO
   widen, narrow_to_region
--------------------------------------------------------------

open_rect

 SYNOPSIS
   open_rect

 USAGE
   Void open_rect ();

 DESCRIPTION
  The `open_rect' function may be used to insert a blank rectangle whose
  size is determined by the mark and the current editing point.  Any text
  that lies in the region of the rectangle will be pushed to the right.

 SEE ALSO
   insert_rect, kill_rect, copy_rect
--------------------------------------------------------------

quit_jed

 SYNOPSIS
   quit_jed

 USAGE
   Void quit_jed ();

 DESCRIPTION
  This function quits the editor immediately.  No buffers are
  auto-saved and no hooks are called.  The function `exit_jed' should be
  called when it is desired to exit in a safe way.

 SEE ALSO
   exit_jed
--------------------------------------------------------------

read_file

 SYNOPSIS
   read_file

 USAGE
   Integer read_file (string fn);

 DESCRIPTION
  The `read_file' function may be used to read a file specified by `fn'
  into its own buffer.  It returns a non-zero value upon success and
  signals an error upon failure.  The hook `find_file_hook' is called
  after the file is read in.  Unlike the related function, `find_file',
  this function does not create a window for the newly created buffer.

 SEE ALSO
   find_file, file_status, write_buffer
--------------------------------------------------------------

read_with_completion

 SYNOPSIS
   read_with_completion

 USAGE
   Void read_with_completion (String prt, String dflt, String s, Integer type);

 DESCRIPTION
  This function may be used to read one of the objects specified by the
  last parameter `type'.  The first parameter, `prt', is used as a
  prompt, the second parameter, `dflt', is used to specify a default,
  and the third parameter, `s', is used to initialize the string to
  be read.
  `type' is an integer with the following meanings:

           'f'   file name
           'b'   buffer name
           'F'   function name
           'V'   variable name.
   

  Finally, if `type' has the value `'s'', then the set of completions
  will be defined by a zeroth parameter, `list', to the function call.
  This parameter is simple a comma separated list of completions.
  For example,

           read_with_completion ("Larry,Curly,Moe", "Favorite Stooge:",
                                 "Larry", "", 's');

  provides completion over the set of three stooges.
  The function returns the string read.

 SEE ALSO
   read_mini
--------------------------------------------------------------

set_abort_char

 SYNOPSIS
   set_abort_char

 USAGE
   Void set_abort_char (Integer ch);

 DESCRIPTION
  This function may be used to change the keyboard character that
  generates an S-Lang interrupt.  The parameter `ch' is the ASCII value
  of the character that will become the new abort character. The
  default abort character `Ctrl-G' corresponds to `ch=7'.
--------------------------------------------------------------

suspend

 SYNOPSIS
   suspend

 USAGE
   Void suspend ();

 DESCRIPTION
  The action of this command varies with the operating system.
  Under Unix, the editor will be suspended and control will pass to the
  parent process.  Under VMS and MSDOS, a new subprocess will be spawned.
  Before suspension, `suspend_hook' is called.  When the editor is
  resumed, `resume_hook' will be called.  These hooks are user-defined
  functions that take no arguments and return no values.
--------------------------------------------------------------

ungetkey

 SYNOPSIS
   ungetkey

 USAGE
   Void ungetkey (Integer ch);

 DESCRIPTION
  This function may be used to push a character `ch' represented by its
  ASCII value, onto the input stream.  This means that the next keyboard
  to be read will be `ch'.

 SEE ALSO
   buffer_keystring, getkey, get_key_function
--------------------------------------------------------------

buffer_keystring

 SYNOPSIS
   buffer_keystring

 USAGE
   Void buffer_keystring (String str);

 DESCRIPTION
  Append string `str' to the end of the input stream to be read by JED's
  getkey routines.

 SEE ALSO
   ungetkey, getkey
--------------------------------------------------------------

use_keymap

 SYNOPSIS
   use_keymap

 USAGE
   Void use_keymap (String km);

 DESCRIPTION
  This function may be used to dictate which keymap will be used by the
  current buffer.  `km' is a string value that corresponds to the name
  of a keymap.

 SEE ALSO
   make_keymap, keymap_p, what_keymap
--------------------------------------------------------------

w132

 SYNOPSIS
   w132

 USAGE
   Void w132 ();

 DESCRIPTION
  This function may be used to set the number of columns on a vtxxx
  compatable terminal to 132.

 SEE ALSO
   exmp{w80
--------------------------------------------------------------

w80

 SYNOPSIS
   w80

 USAGE
   Void w80 ();

 DESCRIPTION
  This function may be used to set the number of columns on a vtxxx
  compatable terminal to 80.

 SEE ALSO
   w132, set_term_vtxxx
--------------------------------------------------------------

what_mode

 SYNOPSIS
   what_mode

 USAGE
   (String name, Integer flags) = Integer what_mode ();

 DESCRIPTION
  This function may be used to obtain the mode flags and mode name of the
  current buffer.  See `set_mode' for more details.

 SEE ALSO
   set_mode, getbuf_info, setbuf_info
--------------------------------------------------------------

widen

 SYNOPSIS
   widen

 USAGE
   Void widen ();

 DESCRIPTION
  This function undoes the effect of `narrow'.  Consult the documentation
  for `narrow' for more information.

 SEE ALSO
   widen_region, narrow
--------------------------------------------------------------

widen_region

 SYNOPSIS
   widen_region

 USAGE
   Void widen_region ();

 DESCRIPTION
  This function undoes the effect of `narrow_to_region'.  Consult the
  documentation for `narrow_to_region' for more information.

 SEE ALSO
   widen, narrow_to_region
--------------------------------------------------------------

window_line

 SYNOPSIS
   window_line

 USAGE
   Integer window_line ();

 DESCRIPTION
  This function returns the number of rows from the top of the current
  window for the current line.  If the current line is the very first line
  in the window, a value of `1' will be returned, i.e., it is the first
  line of the window.

 SEE ALSO
   window_info, nwindows
--------------------------------------------------------------

write_buffer

 SYNOPSIS
   write_buffer

 USAGE
   Integer write_buffer (String filename);

 DESCRIPTION
  This function may be used to write the current buffer out to a file
  specified by `filename'.  The buffer will then become associated with
  that file.  The number of lines written to the file is returned.  An
  error condition will be signaled upon error.

 SEE ALSO
   write_region_to_file, setbuf_info
--------------------------------------------------------------

write_region_to_file

 SYNOPSIS
   write_region_to_file

 USAGE
   Integer write_region_to_file (String filename);

 DESCRIPTION
  This function may be used to write a region of the current buffer to
  the file specified by `filename'.  It returns the number of lines
  written to the file or signals an error upon failure.

 SEE ALSO
   write_buffer, append_region_to_file, push_mark
--------------------------------------------------------------

count_chars

 SYNOPSIS
   count_chars

 USAGE
   String count_chars ();

 DESCRIPTION
  This function returns information about the size of the current buffer
  and current position in the buffer.  The string returned is of the form:

           'h'=104/0x68/0150, point 90876 of 127057


 SEE ALSO
   what_char
--------------------------------------------------------------

get_yes_no

 SYNOPSIS
   get_yes_no

 USAGE
   Integer get_yes_no (String s);

 DESCRIPTION
  This function may be used to get a yes or no response from the
  user.  The string parameter `s' will be used to construct the prompt
  by concating the string `"? (yes/no)"' to `s'.
  It returns `1' if the answer is yes or `0' if the answer is no.

 SEE ALSO
   getkey, flush, message
--------------------------------------------------------------

rename_file

 SYNOPSIS
   rename_file

 USAGE
   Integer rename_file (String old_name, String new_name);

 DESCRIPTION
  This function may be used to change the name of a disk file from
  `old_name' to `new_name'.  Upon success, zero is returned.  Any other
  value indicates failure.
  Note: Both filenames must refer to the same file system.

 SEE ALSO
   file_status, stat_file
--------------------------------------------------------------

change_default_dir

 SYNOPSIS
   change_default_dir

 USAGE
   Integer change_default_dir (String new_dir);

 DESCRIPTION
  This function may be used to change the current working directory
  of the editor to `new_dir'.  It returns zero upon success or `-1' upon
  failure.
  Note: Each buffer has its own working directory.  This function does not
  change the working directory of the buffer.  Rather, it changes the
  working directory of the whole editor.  This has an effect on functions
  such as `rename_file' when such functions are passed relative filenames.

 SEE ALSO
   setbuf_info, getbuf_info, rename_file
--------------------------------------------------------------

prefix_argument

 SYNOPSIS
   prefix_argument

 USAGE
   Integer prefix_argument (Integer dflt);

 DESCRIPTION
  This function may be used to determine whether or not the user has entered
  a prefix argument from the keyboard.  If a prefix argument is present,
  its value is returned; otherwise, `dflt' is returned.  Calling this
  function cancels the prefix argument.
  For example,

           variable arg = prefix_argument (-9999);
           if (arg == -9999)
             message ("No Prefix Argument");
           else
             message (Sprintf ("Prefix argument: %d", arg, 1));

  displays the prefix argument in the message area.
  Note: This function is incapable of distinguishing between the case of
  no prefix argument and when the argument's value is `dflt'.  Currently,
  this is not a problem because the editor does not allow negative prefix
  arguments.
--------------------------------------------------------------

set_buffer_hook

 SYNOPSIS
   set_buffer_hook

 USAGE
   Void set_buffer_hook (String hook, String f);

 DESCRIPTION
  Set current buffer hook `hook' to function `f'. `f' is a user
  defined S-Lang function.  Currently, `hook' can be any one of:

            "par_sep"  -- returns zero if the current line does not
                 constitute the beginning or end of a paragraph.
                 It returns non-zero otherwise.  The default value of hook is
                 is_paragraph_separator.
            "indent_hook" -- returns nothing.  It is called by the indent line
                 routines.
            "wrap_hook"   hook that is called after a line is wrapped.  Returns
                 nothing.
            "newline_indent_hook"  --- returns nothing.  If this hook is defined,
                 it will be called instead of the internal function
                 newline_and_indent is called.
            "bob_eob_error_hook"  --- returns nothing.  If this hook is defined,
                 it will be called whenever an error one of the internal cursor
                 movement functions would have generated an end of buffer or beginning of
                 buffer error.  It is passed an integer that indicates which function
                 would have generated the error.  Specifically:
          
                          -1  previous_line_cmd
                          -2  previous_char_cmd
                          -3  page_up
                           1  next_line_cmd
                           2  next_char_cmd
                           3  page_down
            "mouse_down", "mouse_up", "mouse_drag" "mouse_2click" "mouse_3click"
                 These hooks are used to override default hooks defined by the
                 mouse_set_default_hook function.

  Note: If `hook' is the empty string, all buffer hooks will be set to
  their default values.

 SEE ALSO
   mouse_set_default_hook
--------------------------------------------------------------

insert_file_region

 SYNOPSIS
   insert_file_region

 USAGE
   Integer insert_file_region (String file, String beg, String end);

 DESCRIPTION
  This function may be used to insert a region specified by the strings
  `beg' and `end' of the file with name `file' into the current buffer.
  The file is scanned line by line until a line that begins with the
  string given by `beg' is encountered.  Then, that line and all
  successive lines up to the one that starts with the string specified
  by `end' is inserted into the buffer.  The line beginning with the
  value of `end' is not inserted although the one beginning with `beg' is.
  The function returns the number of lines inserted or `-1' upon failure
  to open the file.

  Note that a zero length `beg' corresponds to the first line
  and that a zero length `end' corresponds to the last line.

 SEE ALSO
   insert_file
--------------------------------------------------------------

search_file

 SYNOPSIS
   search_file

 USAGE
   Integer search_file (String filename, String re, Integer nmax);

 DESCRIPTION
  This function may be used to search for strings in a disk file
  matching the regular expression `re'.  The first argument `filename'
  specifies which file to search.  The last argument `nmax' specifies
  how many matches to return.  Each line that is matched is pushed onto
  the S-Lang stack.  The number of matches (limited by `nmax') is returned.
  If the file contains no matches, zero is returned.
--------------------------------------------------------------

random

 SYNOPSIS
   random

 USAGE
   Integer random (Integer seed, Integer nmax);

 DESCRIPTION
  The `random' function returns a random number in the range 0 to, but
  not including, `nmax'.  If the first parameter `seed' is 0, the
  number generated depends on a previous seed.  If `seed' is -1, the
  current time and process id will be used to seed the random number
  generator; otherwise `seed' will be used.

  Example: generate 1000 random integers in the range 0-500 and insert
  them into buffer:

           () = random (-1, 0);  % seed generator usingtime and pid
           loop (1000)
             insert (Sprintf ("%d\n", random (0, 500), 1));

  Note: The random number is generated via the expression:

           r = r * 69069UL + 1013904243UL;

--------------------------------------------------------------

set_term_vtxxx

 SYNOPSIS
   set_term_vtxxx

 DESCRIPTION
   Set terminal display appropriate for a vtxxx terminal.  This function
  takes a single integer parameter.  If non-zero, the terminal type is set
  for a vt100.  This means the terminal lacks the ability to insert/delete
  lines and characters.  If the parameter is zero, the terminal is assumed
  to be vt102 compatable.  Unless you are using a VERY old terminal or
  a primitive emulator, use zero as the parameter.
--------------------------------------------------------------

mouse_get_event_info

 SYNOPSIS
   mouse_get_event_info

 USAGE
   (x, y, state) = mouse_get_event_info ();

 DESCRIPTION
  This function returns the position of the last processed
  mouse event, and the state of the mouse buttons and shift
  keys before the event.

  `x' and `y' represent the column and row, respectively, where
  the event took place. They are measured with relative to the
  top left corner of the editor's display.

  `state' is a bitmapped integer whose bits are defined as follows:

            1  Left button pressed
            2  Middle button pressed
            4  Right button pressed
            8  Shift key pressed
           16  Ctrl key pressed

  Other information such as the button that triggered the event is
  available when the mouse handler is called.  As a result, this information
  is not returned by `mouse_get_event_info'.

 SEE ALSO
   mouse_set_default_hook, set_buffer_hook.
--------------------------------------------------------------

mouse_set_current_window

 SYNOPSIS
   mouse_set_current_window

 USAGE
   Void mouse_set_current_window ();

 DESCRIPTION
  Use of this function results in changing windows to the window that
  was current at the time of the mouse event.

 SEE ALSO
   mouse_set_default_hook
--------------------------------------------------------------

mouse_set_default_hook

 SYNOPSIS
   mouse_set_default_hook

 USAGE
   Void set_default_mouse_hook (String name, String fun);

 DESCRIPTION
  This function associates a slang function `fun' with the mouse event
  specified by `name'.  The first parameter `name' must be one of the
  following:

               "mouse_up"          "mouse_status_up"
               "mouse_down"        "mouse_status_down"
               "mouse_drag"        "mouse_status_drag"
               "mouse_2click"      "mouse_status_2click"
               "mouse_3click"      "mouse_status_3click"

  The meaning of these names should be obvious.  The second parameter,
  `fun' must be defined as

              define fun (line, column, btn, shift)

  and it must return an integer.  The parameters `line' and
  `column' correspond to the line and column numbers in the
  buffer where the event took place. `btn' is an integer that
  corresonds to the button triggering the event.  It can take
  on values `1', `2', and `4' corresponding to the left,
  middle, and right buttons, respectively.  `shift' can take on
  values `0', `1', or `2' where `0' indicates that no modifier
  key was pressed, `1' indicates that the SHIFT key was
  pressed, and `2' indicates that the CTRL key was pressed.
  For more detailed information about the modifier keys, use
  the function `mouse_get_event_info'.

  When the hook is called, the editor will automatically change
  to the window where the event occured.  The return value of
  the hook is used to dictate whether or not hook handled the
  event or whether the editor should switch back to the window
  prior to the event.  Specifically, the return value is interpreted
  as follows:


             -1     Event not handled, pass to default hook.
              0     Event handled, return active window prior to event
              1     Event handled, stay in current window.


 SEE ALSO
   mouse_get_event_info, mouse_set_current_window, set_buffer_hook
--------------------------------------------------------------

mouse_map_buttons

 SYNOPSIS
   mouse_map_buttons

 USAGE
   Void mouse_map_buttons (Integer x, Integer y);

 DESCRIPTION
  This function may be used to map one mouse button to another.  The
  button represented by `x' will appear as `y'.
--------------------------------------------------------------

vms_get_help

 SYNOPSIS
   vms_get_help

 USAGE
   Void vms_get_help (String hlp_file, String hlp_topic);

 DESCRIPTION
  This function may be used on VMS systems to interact with the VMS help
  system from within the editor.  `hlp_file' is the name of the help file
  to use and `hlp_topic' is the topic for which help is desired.
--------------------------------------------------------------

vms_send_mail

 SYNOPSIS
   vms_send_mail

 USAGE
   Integer vms_send_mail (String recip_lis, String subj);

 DESCRIPTION
  This VMS specific function provides an interface to the VMS callable
  mail facility.  The first argument, `recip_lis', is a comma separated list
  of email addresses and `subj' is a string that represents the subject of
  the email.  The current buffer will be emailed.  It returns `1' upon
  success and `0' upon failure.
--------------------------------------------------------------

enable_flow_control

 SYNOPSIS
   enable_flow_control

 USAGE
   Void enable_flow_control (Integer flag);

 DESCRIPTION
  This Unix specific function may be used to turn XON/XOFF flow control
  on or off.  If `flag' is non-zero, flow control is turned on; otherwise,
  it is turned off.
--------------------------------------------------------------

core_dump

 SYNOPSIS
   core_dump

 USAGE
   Void core_dump(String msg, Integer severity);

 DESCRIPTION
  `core_dump' will exit the editor dumping the state of some crucial
  variables. If `severity' is `1', a core dump will result.  Immediately
  before dumping, `msg' will be displayed.

 SEE ALSO
   exit_jed, quit_jed, message, error
--------------------------------------------------------------

get_last_macro

 SYNOPSIS
   get_last_macro

 USAGE
   String get_last_macro ();

 DESCRIPTION
  This function returns characters composing the last keyboard macro.  The
  charactors that make up the macro are encoded as themselves except the
  following characters:

           '\n'    ---->   \J
           null    ---->   \@
            \      ---->   \\
            '"'    ---->   \"

--------------------------------------------------------------

IsHPFSFileSystem

 SYNOPSIS
   IsHPFSFileSystem

 USAGE
   Integer IsHPFSFileSystem(String path);

 DESCRIPTION
  Returns non-zero if drive of `path' (possibly the default drive) is
  HPFS.
--------------------------------------------------------------

msdos_fixup_dirspec

 SYNOPSIS
   msdos_fixup_dirspec

 USAGE
   String msdos_fixup_dirspec (String dir);

 DESCRIPTION
  The motivation behind this is that DOS does not like a trailing
  backslash except if it is for the root dir.  This function makes
  `dir' conform to that.
--------------------------------------------------------------

set_top_status_line

 SYNOPSIS
   set_top_status_line

 USAGE
   String set_top_status_line (String str);

 DESCRIPTION
  This functions sets the string to be displayed at the top of the
  display. It returns the value of the line that was previously
  displayed.

 SEE ALSO
   enable_top_status_line
--------------------------------------------------------------

enable_top_status_line

 SYNOPSIS
   enable_top_status_line

 USAGE
   Void enable_top_status_line (Integer x);

 DESCRIPTION
  If x is non-zero, the top status line is enabled.  If x is zero, the
  top status line is disabled and hidden.

 SEE ALSO
   set_top_status_line
--------------------------------------------------------------

create_line_mark

 SYNOPSIS
   create_line_mark

 USAGE
   User_Mark create_line_mark (Integer c);

 DESCRIPTION
  The function `create_line_mark' returns an object of the type
  `User_Mark'.  This object contains information regarding the current
  position and current buffer.  The parameter `c' is used to specify the
  color to use when the line is displayed.

 SEE ALSO
   create_user_mark, set_color_object
--------------------------------------------------------------

create_user_mark

 SYNOPSIS
   create_user_mark

 USAGE
   User_Mark create_user_mark ();

 DESCRIPTION
  The function `create_user_mark' returns an object of the type
  `User_Mark'. This object contains information regarding the current
  position and current buffer.

 SEE ALSO
   move_user_mark, goto_user_mark, user_mark_buffer
--------------------------------------------------------------

goto_user_mark

 SYNOPSIS
   goto_user_mark

 USAGE
   Void goto_user_mark (User_Mark mark);

 DESCRIPTION
  This function returns to the position of the User Mark `mark'.  Before
  this function may be called, the current buffer must be the buffer
  associated with the makr.

 SEE ALSO
   move_user_mark, create_user_mark, user_mark_buffer
--------------------------------------------------------------

move_user_mark

 SYNOPSIS
   move_user_mark

 USAGE
   Void move_user_mark (User_Mark mark);

 DESCRIPTION
  This function call takes a previously created User Mark, `mark', and
  moves it to the current position and buffer.  This means that if one
  subsequently calls `goto_user_mark' with this mark as an argument, the
  the position will be set to what it is prior to the call to
  `move_user_mark'.
  Note: This function call is not equivalent to simply using

           mark = create_user_mark ();

  because independent copies of a User Mark are not created uponn
  assignment.  That is, if one has

           variable mark1, mark2;
           setbuf ("first");
           mark1 = create_user_mark ();
           mark2 = mark1;
           setbuf ("second");

  and then calls

           move_user_mark (mark1);

  both user marks, `mark1' and `mark2' will be moved since they refer to
  the same mark.

 SEE ALSO
   goto_user_mark, create_user_mark, user_mark_buffer
--------------------------------------------------------------

user_mark_buffer

 SYNOPSIS
   user_mark_buffer

 USAGE
   String user_mark_buffer (User_Mark m);

 DESCRIPTION
  This function returns the name of the buffer associated with the
  User Mark specified by `m'.

 SEE ALSO
   goto_user_mark, create_user_mark, move_user_mark, is_user_mark_in_narrow
--------------------------------------------------------------

is_user_mark_in_narrow

 SYNOPSIS
   is_user_mark_in_narrow

 USAGE
   Integer is_user_mark_in_narrow (User_Mark m);

 DESCRIPTION
  This function returns non-zero if the user mark `m' refers to a
  position that is within the current narrow restriction of the current
  buffer.  It returns zero if the mark lies outside the restriction.
  An error will be generated if `m' does not represent a mark for the current
  buffer.

 SEE ALSO
   goto_user_mark, move_user_mark
--------------------------------------------------------------

list_abbrev_tables

 SYNOPSIS
   list_abbrev_tables

 USAGE
   Integer list_abbrev_tables ();

 DESCRIPTION
  This function returns the names of all currently defined
  abbreviation tables.  The top item on the stack will be the number of
  tables followed by the names of the tables.
--------------------------------------------------------------

use_abbrev_table

 SYNOPSIS
   use_abbrev_table

 USAGE
   Void use_abbrev_table (String table);

 DESCRIPTION
  Use the abbreviation table named `table' as the abbreviation table for
  the current buffer.  By default, the "Global" table is used.
--------------------------------------------------------------

create_abbrev_table

 SYNOPSIS
   create_abbrev_table

 USAGE
   Void create_abbrev_table (String name, String word);

 DESCRIPTION
  Create an abbreviation table with name `name'.  The second parameter
  `word' is the list of characters used to represent a word for the
  table. If the empty string is passed for `word', the characters that
  currently constitute a word are used.
--------------------------------------------------------------

define_abbrev

 SYNOPSIS
   define_abbrev

 USAGE
   Void define_abbrev (String tbl, String abbrv, String expans);

 DESCRIPTION
  This function is used to define an abbreviation `abbrv' that will be
  expanded to `expans'.  The definition will be placed in the table with
  name `tbl'.
--------------------------------------------------------------

abbrev_table_p

 SYNOPSIS
   abbrev_table_p

 USAGE
   Integer abbrev_table_p (String name);

 DESCRIPTION
  Returns non-zero if an abbreviation table with called `name' exists. If
  the table does not exist, it returns zero.
--------------------------------------------------------------

dump_abbrev_table

 SYNOPSIS
   dump_abbrev_table

 USAGE
   Void dump_abbrev_table (String name);

 DESCRIPTION
  This function inserts the contents of the abbreviation table called
  `name' into the current buffer.
--------------------------------------------------------------

what_abbrev_table

 SYNOPSIS
   what_abbrev_table

 USAGE
   (String, String) what_abbrev_table ();

 DESCRIPTION
  This functions returns both the name of the abbreviation table and the
  definition of the word for the table currently associated with the
  current buffer.  If none is defined it returns two empty strings.
--------------------------------------------------------------

delete_abbrev_table

 SYNOPSIS
   delete_abbrev_table

 USAGE
   Void delete_abbrev_table (String name);

 DESCRIPTION
  Delete the abbrev table specified by `name'.
--------------------------------------------------------------

set_column_colors

 SYNOPSIS
   set_column_colors

 USAGE
   Void set_column_colors (Integer color, Integer c0, Integer c1);

 DESCRIPTION
  This function associates a color with columns `c0' through `c1' in the
  current buffer.  That is, if there is no syntax highlighting already
  defined for the current buffer, when the current buffer is displayed,
  columns `c0' through `c1' will be displayed with the attributes of the
  `color' object.  The parameters `c0' and `c1' are restricted to the range
  1 through `SCREEN_WIDTH'.  Use the function `set_color_object' to assign
  attributes to the `color' object.

 SEE ALSO
   set_color_object
--------------------------------------------------------------

set_color_object

 SYNOPSIS
   set_color_object

 USAGE
   Void set_color_object (Integer obj, String fg, String bg);

 DESCRIPTION
  Associate colors fg and bg with object obj.  Valid values for `obj'
  are in the range 30 to 128.  All other values are reserved.  Values for
  the strings `fg' and `bg' are as given by the description for `set_color'.

 SEE ALSO
   set_column_colors, set_color
--------------------------------------------------------------

translate_region

 SYNOPSIS
   translate_region

 USAGE
   Void translate_region ();

 DESCRIPTION
  This function uses the global character array `TRANSLATE_ARRAY' to
  modify the characters in a region based on the mapping defined by the
  array.  The only restriction is that the newline character cannot be
  mapped.  This example

           define swap_a_and_b ()
           {
             variable i;
             _for (0; 255, 1)
               {
                  i = ();
                  TRANSLATE_ARRAY[i] = i;
               }
             TRANSLATE_ARRAY['a'] = 'b';
             TRANSLATE_ARRAY['b'] = 'a';
             bob (); push_mark (); eob ();
             translate_region ();
           }

  uses `translate_region' to swap the `'a'' and `'b'' characters in the
  current buffer.

 SEE ALSO
   insert, delete, what_char
--------------------------------------------------------------

set_current_kbd_command

 SYNOPSIS
   set_current_kbd_command

 USAGE
   Void set_current_kbd_command (String s);

 DESCRIPTION
  Undocumented
--------------------------------------------------------------

find_matching_delimiter

 SYNOPSIS
   find_matching_delimiter

 USAGE
   Integer find_matching_delimiter (Integer ch);

 DESCRIPTION
  This function scans either forward or backward looking for the
  delimiter that matches the character specified by `ch'.  The actual
  direction depends upon the syntax of the character `ch'.  The
  matching delimiter pair must be declared as such by a prior call to
  `define_syntax'.  This function returns one of the following values:

            1    Match found
            0    Match not found
           -1    A match was attempted from within a string.
           -2    A match was attempted from within a comment
            2    No information

  In addition, the current point is left either at the match or is left
  at the place where the routine either detected a mismatch or gave up.
  In the case of a comment or a string (return values of -2 or -1), the
  current point is left at the beginning of a comment.
  Note: If the of `ch' is zero, the character at the current point will be
  used.

 SEE ALSO
   blink_match, create_syntax_table, define_syntax, parse_to_point
--------------------------------------------------------------

blink_match

 SYNOPSIS
   blink_match

 USAGE
   Void blink_match ();

 DESCRIPTION
  This function will attempt to blink the matching delimiter immediately
  before the editing point.

 SEE ALSO
   find_matching_delimiter, define_syntax
--------------------------------------------------------------

parse_to_point

 SYNOPSIS
   parse_to_point

 USAGE
   Integer parse_to_point ();

 DESCRIPTION
  This function attempts to determine the syntactic context of the
  current editing point.  That is, it tries to determine whether or not
  the current point is in a comment, a string, or elsewhere.
  It returns:

           -2   In a comment
           -1   In a string or a character
            0   Neither of the above

  Note: This routine is rather simplistic since it makes the assumption
  that the character at the beginning of the current line is not in a
  comment nor is in a string.

 SEE ALSO
   define_syntax, find_matching_delimiter
--------------------------------------------------------------

set_syntax_flags

 SYNOPSIS
   set_syntax_flags

 USAGE
   Void set_syntax_flags (String table, Integer flag);

 DESCRIPTION
  This function may be used to set the flags in the syntax table
  specified by the `table' parameter.  The `flag' parameter may take
  any of the following values or any combination bitwise or-ed together:

           1     Keywords are case insensitive
           2     Comments are Fortran-like
           4     Comments are C-like
           8     Keywords are TeX-like

  A Fortran-like comment means that any line that begins with any
  character that is not a digit is considered to be a comment.  A
  C-like comment means that any line that starts with `"* "' preceeded
  by any ammount of whitespace is to be highlighted as a comment.
  A TeX-like keyword is any word that follows the quote character.

 SEE ALSO
   define_syntax
--------------------------------------------------------------

define_syntax

 SYNOPSIS
   define_syntax

 USAGE
   Void define_syntax (..., Integer type, String name);

 DESCRIPTION
  This function adds a syntax entry to the table specified by the last
  parameter `name'.  The actual number of parameters vary according to
  the next to the last parameter `type'.

  If `type' is `'"'' or `'\''', a string or character delimiter syntax is
  defined. In this case, `define_syntax' only takes three parameters
  where the first parameter is an integer that represents the character
  for which the syntax is to be applied.

  Similarly, if `type' is `'\\'', then a quote syntax is defined and
  again `define_syntax' only takes three parameters where the first
  parameter is an integer that represents the character for which the
  syntax is to be applied.  A quote character is one in which the
  syntax of the following character is not treated as special.

  If `type' is `'('', then `define_syntax' takes four parameters where
  the first two parameters are strings that represent a matching set of
  delimiters.  The first string contains the set of opening delimiters
  and the second string specifies the set of closing delimiters that
  match the first set.  If a character from the closing set is entered
  into the buffer, the corresponding delimiter from the opening set
  will be blinked.  For example, if the C language syntax table is
  called `"C"', then one would use

           define_syntax ("([{", ")]}", '(', "C");

  to declare the matching delimiter set.  Note that the order of the
  characters in the two strings must correspond.  That is, the above
  example says that `'('' matches `')'' and so on.

  If `type' is `'%'', a comment syntax is defined.  As in the
  previous case, `define_syntax' takes four parameters where there
  first two parameters are strings that represent the begin and end
  comment delimiters.  If the comment syntax is such that the comment
  ends at the end of a line, the second string must either be the empty
  string, `""', or a newline `"\n"'.  In the current implementation, at
  most the begin and end comment strings can consist of at most two
  characters.

  If `type' is `'+'', the first parameter is a string whose characters
  are given the operator syntax.  If type is `','', the first parameter
  is a string composed of characters that are condered to be
  delimiters.  If type is '0', the first parameter is a string composed
  of characters that make up a number.

  If `type' is `<', the first parameter is a string whose successive
  characters form begin and end keyword highlight directives.

  Finally, if `type' is `'#'', the first parameter is an integer whose
  value corresponds to the character used to begin preprocessor lines.

  As an example, imagine a language in which the dollar sign character
  `$' is used as a string delimiter, the backward quote character ``'
  is used as a quote character, comments begin with a semi-colon and
  end at the end of a line, and the characters `'<'' and `'>'' form
  matching delimiters.  The one might use

           create_syntax_table ("strange");
           define_syntax ('$',        '"',  "strange");
           define_syntax ('`',        '\\', "strange");
           define_syntax (";", "",    '%',  "strange");
           define_syntax ("<", ">",   '(',  "strange");

  to create a syntax table called `"strange"' and define the
  syntax entries for appropriate this example.

 SEE ALSO
   create_syntax_table, use_syntax_table, find_matching_delimiter
--------------------------------------------------------------

use_syntax_table

 SYNOPSIS
   use_syntax_table

 USAGE
   Void use_syntax_table (String n);

 DESCRIPTION
  This function associates the current buffer with the syntax table
  specified by the name `n'.  Until another syntax table is associated
  with the buffer, the syntax table named `n' will be used in all
  operations that require a syntax.  This includes parenthesis matching,
  indentation, etc.

 SEE ALSO
   create_syntax_table, define_syntax
--------------------------------------------------------------

create_syntax_table

 SYNOPSIS
   create_syntax_table

 USAGE
   Void create_syntax_table (String name);

 DESCRIPTION
  This the purpose of this function is to create a new syntax table
  with the name specified by `name'.  If the table already exists, this
  function does nothing.

 SEE ALSO
   define_syntax, use_syntax_table, define_keywords
--------------------------------------------------------------

define_keywords_n

 SYNOPSIS
   define_keywords_n

 USAGE
   String define_keywords_n (String table, String kws, Integer len, Integer n);

 DESCRIPTION
  This function is used to define a set of keywords that will be color
  syntax highlighted in the keyword color associated with the table
  specified by `n'.  The first parameter, `table', specifies which
  syntax table is to be used for the definition. The second parameter,
  `kws', is a string that is the concatenation of keywords of length
  specified by the last parameter `len'.  The list of keywords specified
  by `kws' must be in alphabetic order.  The function returns the
  previous list of keywords of length `len'. For example, C mode uses
  the statement

           () = define_keywords_n ("C", "asmforintnewtry", 3, 0);

  to define the four three-letter keywords `asm', `for', `int', `new',
  and `try'.  Note that in the above example, the return value is not used.

 SEE ALSO
   define_syntax, set_color
--------------------------------------------------------------

set_highlight_cache_dir

 SYNOPSIS
   set_highlight_cache_dir

 USAGE
   Void set_highlight_cache_dir (String dir);

 DESCRIPTION
  This function sets the directory where the dfa syntax highlighting
  cache files are located.
  See also: `enable_highlight_cache'
--------------------------------------------------------------

define_highlight_rule

 SYNOPSIS
   define_highlight_rule

 USAGE
   Void define_highlight_rule (String rule, String color, String n);

 DESCRIPTION
  This function adds an enhanced highlighting rule to the
  syntax table specified by the name `n'. The rule is described
  as a regular expression by the string `rule', and the
  associated color is given by the string `color', in the same
  format as is passed to `set_color'. For example:

           create_syntax_table ("demo");
           define_highlight_rule ("[A-Za-z][A-Za-z0-9]*", "keyword", "demo");
           define_highlight_rule ("//.*$", "comment", "demo");
           build_highlight_table ("demo");

  causes a syntax table to be defined in which any string of
  alphanumeric characters beginning with an alphabetic is
  highlighted in keyword color, and anything after "//" on a
  line is highlighted in comment color.

  The regular expression syntax understands character classes
  like `[a-z]' and `[^a-z0-9]', parentheses, `+', `*', `?', `|'
  and `.'. Any metacharacter can be escaped using a backslash
  so that it can be used as a normal character, but beware that
  due to the syntax of S-Lang strings the backslash has to be
  doubled when specified as a string constant. For example:

           define_highlight_rule ("^[ \t]*\\*+[ \t].*$", "comment", "C");

  defines any line beginning with optional whitespace, then one
  or more asterisks, then more whitespace to be a comment. Note
  the doubled backslash before the `*'.

  Note also that `build_highlight_table' must be called before
  the syntax highlighting can take effect.

 SEE ALSO
   create_syntax_table, use_syntax_table, build_highlight_table
--------------------------------------------------------------

build_highlight_table

 SYNOPSIS
   build_highlight_table

 USAGE
   Void build_highlight_table (String n);

 DESCRIPTION
  This function builds a DFA table for the enhanced syntax
  highlighting scheme specified for the syntax table specified
  by the name `n'. This must be called before any syntax
  highlighting will be done for that syntax table.

 SEE ALSO
   create_syntax_table, use_syntax_table, define_highlight_rule, enable_highlight_cache
--------------------------------------------------------------

enable_highlight_cache

 SYNOPSIS
   enable_highlight_cache

 USAGE
   Void enable_highlight_cache (String file, String n);

 DESCRIPTION
  This function enables caching of the DFA table for the
  enhanced syntax highlighting scheme belonging to the syntax
  table specified by the name `n'. This should be called before
  any calls to `define_highlight_rule' or to
  `build_highlight_table'. The parameter `file'
  specifies the name of the file (stored in the directory set by the
  `set_highlight_cache_dir' function) which should be used as a cache.

  For example, in `cmode.sl' one might write

           enable_highlight_cache ("cmode.dfa", "C");

  to enable caching of the DFA. If caching were not enabled for
  C mode, the DFA would take possibly a couple of seconds to
  compute every time Jed was started.

  Transferring cache files between different computers is
  theoretically possible but not recommended. Transferring them
  between different versions of Jed is not guaranteed to work.

 SEE ALSO
   create_syntax_table, use_syntax_table, define_highlight_rule, build_highlight_table
--------------------------------------------------------------

set_expansion_hook

 SYNOPSIS
   set_expansion_hook

 USAGE
   Void set_expansion_hook (String fname);

 DESCRIPTION
  This function may be used to specify a function that will be called to
  expand a filename upon TAB completion.  The function `fname' must
  already be defined.  When `fname' is called, it is given a string to
  be expanded. If it changes the string, it must return a non-zero value
  and the modified string.  If the string is not modified, it must simply
  return zero.
--------------------------------------------------------------

get_passwd_info

 SYNOPSIS
   get_passwd_info

 USAGE
   (dir, shell, pwd, uid, gid) = get_passwd_info (String username);

 DESCRIPTION
  This function returns password information about the user with name
  `username'.  The returned variables have the following meaning:

           dir:     login directory
           shell:   login shell
           pwd:     encripted password
           uid:     user identification number
           gid:     group identification number

  If the user does not exist, or the system call fails, the function
  returns with `uid' and `gid' set to `-1'.
--------------------------------------------------------------

get_termcap_string

 SYNOPSIS
   get_termcap_string

 USAGE
   String get_termcap_string (String cap);

 DESCRIPTION
  This function may be used to extract the string associated with the
  termcap capability associated with `cap'.
  Note: This function is only available on Unix systems.
--------------------------------------------------------------

get_doc_string

 SYNOPSIS
   get_doc_string

 USAGE
   Integer get_doc_string (String obj, String filename);

 DESCRIPTION
  This function may be used to extract the documentation for a variable
  or function from a jed documentation file given by `filename'.
  If successful, it returns non-zero as well as the documentation string.
  It returns zero upon failure.  The first character of `obj' determines
  whether `obj' refers to a function or to a variable.  The rest of the
  characters specify the name of the object.
--------------------------------------------------------------

kill_process

 SYNOPSIS
   kill_process

 USAGE
   Void kill_process (Integer id);

 DESCRIPTION
  Kill the subprocess specified by the process handle `id'.
--------------------------------------------------------------

send_process

 SYNOPSIS
   send_process

 USAGE
   Void send_process (Integer id, String s);

 DESCRIPTION
  Undocumented
--------------------------------------------------------------

open_process

 SYNOPSIS
   open_process

 USAGE
   Integer open_process (name, argv1, argv2, ..., argvN, N);

 DESCRIPTION
  Returns id of process, -1 upon failure.
--------------------------------------------------------------

process_mark

 SYNOPSIS
   process_mark

 USAGE
   User_Mark process_mark (Integer id);

 DESCRIPTION
  This function returns the user mark that contains the position of the
  last output by the process.
--------------------------------------------------------------

set_process

 SYNOPSIS
   set_process

 USAGE
   Void set_process (Integer pid, String what, String value);

 DESCRIPTION
  `pid' is the process hendle returned by `open_process'.  The second
  parameter, `what', specifies what to set.  It must be one of the
  strings:

           "signal" :  indicates that 'value' is the name of a function to call
                       when the process status changed.  The function specified
                       by 'value' must be declared to accept an argument list:
                       (pid, flags) where 'pid' has the same meaning as above and
                       flags is an integer with the meanings:
                         1: Process Running
                         2: Process Stopped
                         4: Process Exited Normally
                         8: Process Exited via Signal
                       To obtain more information about the process, e.g., exit_status,
                       use the function 'get_process_status'.
                       Note: when this function is called, the current buffer is
                       guaranteed to be the buffer associated with the process.
          
           output" :   This parameter determines how output from the process is
                       is processed.  If the 'value' is the empty string "", output
                       will go to the end of the buffer associated with the process
                       and the point will be left there.
                       If value is ".", output will go at the current buffer position.
                       If value is "@", output will go to the end of the buffer but
                       the point will not move.  Otherwise, 'value' is the name of
                       a slang function with arguments: (pid, data) where pid has
                       the above meaning and data is the output from the process.

--------------------------------------------------------------

send_process_eof

 SYNOPSIS
   send_process_eof

 USAGE
   send_process_eof (Integer pid);

 DESCRIPTION
  This function closes the `stdin' of the process specified by the
  handle `pid'.
--------------------------------------------------------------

get_process_input

 SYNOPSIS
   get_process_input

 USAGE
   Void get_process_input (Integer tsecs);

 DESCRIPTION
  Read all pending input by all subprocesses.  If no input is
  available, this function will wait for input until `tsecs' tenth of
  seconds have expired.
--------------------------------------------------------------

signal_process

 SYNOPSIS
   signal_process

 USAGE
   Void signal_process (Integer pid, Integer signum);

 DESCRIPTION
  This function may be used to send a signal to the process whose
  process handle is given by `pid'.  The `pid' must be a valid handle
  that was returned by `open_process'.

 SEE ALSO
   open_process, kill_process, send_process_eof
--------------------------------------------------------------

clear_message

 SYNOPSIS
   clear_message

 USAGE
   Void clear_message ();

 DESCRIPTION
  This function may be used to clear the message line of the display.

 SEE ALSO
   message, update, error, flush
--------------------------------------------------------------

flush_input

 SYNOPSIS
   flush_input

 USAGE
   Void flush_input ();

 DESCRIPTION
  This function may be used to remove all forms of queued input.

 SEE ALSO
   input_pending, getkey
--------------------------------------------------------------

set_buffer_umask

 SYNOPSIS
   set_buffer_umask

 USAGE
   Integer set_buffer_umask (Integer cmask);

 DESCRIPTION
  The function may be used to set the process file creation mask
  for the appropriate operations associated with the current
  buffer.  This makes it possible to have a buffer-dependent
  umask setting. The function takes the desired umask setting and
  returns the previous setting.  If `cmask' is zero, the default
  process umask setting will be used for operations while the buffer
  is current.  If `cmask' is -1, the umask associated with the buffer
  will not be changed.
--------------------------------------------------------------

fsearch

 SYNOPSIS
   fsearch

 USAGE
   Integer fsearch (String str);

 DESCRIPTION
  This function may be used to search forward in buffer looking for the
  string `str'.  If not found, this functions returns zero.  However,
  if found, the length of the string is returned and the current point
  is moved to the to the start of the match.  It respects the setting
  of the variable `CASE_SEARCH'.  If the string that one is searching
  for is known to be at the beginning of a line, the function
  `bol_fsearch' should be used instead.

  Note: This function cannot find a match that crosses lines.

 SEE ALSO
   ffind, fsearch_char, bsearch, bol_fsearch, re_fsearch, looking_at
--------------------------------------------------------------

bsearch

 SYNOPSIS
   bsearch

 USAGE
   Integer bsearch (String str);

 DESCRIPTION
  The `bsearch' function searches backward from the current position
  for the string `str'.  If `str' is found, this function will return
  the length of `str' and move the current position to the beginning of
  the matched text.  If a match is not found, zero will be returned and
  the position will not change.  It respects the value of the variable
  `CASE_SEARCH'.

 SEE ALSO
   fsearch, bol_bsearch, re_bsearch
--------------------------------------------------------------

bfind

 SYNOPSIS
   bfind

 USAGE
   Integer bfind (String str);

 DESCRIPTION
  `bfind' searches backward from the current position to the beginning
  of the line for the string `str'.  If a match is found, the length of
  `str' is returned and the current point is moved to the start of the
  match. If no match is found, zero is returned.
  Note: This function respects the setting of the `CASE_SEARCH' variable.

 SEE ALSO
   bsearch, ffind, bol_bsearch, re_bsearch
--------------------------------------------------------------

ffind

 SYNOPSIS
   ffind

 USAGE
   Integer ffind (String s);

 DESCRIPTION
  `ffind' searches forward from the current position to the end of the
  line for the string `str'.  If a match is found, the length of `str'
  is returned and the current point is moved to the start of the match.
  If no match is found, zero is returned.
  Note: This function respects the setting of the `CASE_SEARCH' variable.
  To perform a search that includes multiple lines, use the `fsearch'
  function.

 SEE ALSO
   fsearch, bfind, re_fsearch, bol_fsearch
--------------------------------------------------------------

bol_fsearch

 SYNOPSIS
   bol_fsearch

 USAGE
   Integer bol_fsearch (str);

 DESCRIPTION
  `bol_fsearch' searches forward from the current point until the end
  of the buffer for occurrences of the string `str' at the beginning of
  a line.  If a match is found, the length of `str' is returned and the
  current point is moved to the start of the match.  If no match is
  found, zero is returned.
  Note: `bol_fsearch' is much faster than using `re_fsearch' to perform
  a search that matches the beginning of a line.

 SEE ALSO
   bol_bsearch, fsearch, ffind, re_fsearch
--------------------------------------------------------------

bol_bsearch

 SYNOPSIS
   bol_bsearch

 USAGE
   Integer bol_bsearch (str);

 DESCRIPTION
  `bol_bsearch' searches backward from the current point until the
  beginning of the buffer for the occurrences of the string `str' at
  the beginning of a line.  If a match is found, the length of `str' is
  returned and the current point is moved to the start of the match. If
  no match is found, zero is returned.

  Note: `bol_bsearch' is much faster than using `re_bsearch' to perform
  a search that matches the beginning of a line.

 SEE ALSO
   bol_fsearch, bsearch, bfind, re_bsearch
--------------------------------------------------------------

bol_fsearch_char

 SYNOPSIS
   bol_fsearch_char

 USAGE
   Integer bol_fsearch_char (Integer ch);

 DESCRIPTION
  This function searches forward for a character `ch' at the beginning
  of a line.  If it is found, `1' is returned; otherwise `0' is returned.

 SEE ALSO
   bol_fsearch, bol_bsearch_char, fsearch_char
--------------------------------------------------------------

bol_bsearch_char

 SYNOPSIS
   bol_bsearch_char

 USAGE
   Integer bol_fsearch_char (Integer ch);

 DESCRIPTION
  This function searches backward for a character `ch' at the beginning
  of a line.  If it is found, `1' is returned; otherwise `0' is returned.

 SEE ALSO
   bol_bsearch, bol_fsearch_char, bsearch_char
--------------------------------------------------------------

fsearch_char

 SYNOPSIS
   fsearch_char

 USAGE
   Integer fsearch_char (Integer ch);

 DESCRIPTION
  This function searches forward for a character `ch'.  If it is
  found, `1' is returned; otherwise `0' is returned.

 SEE ALSO
   fsearch, ffind_char, bsearch_char
--------------------------------------------------------------

bsearch_char

 SYNOPSIS
   bsearch_char

 USAGE
   Integer fsearch_char (Integer ch);

 DESCRIPTION
  This function searches backward for a character `ch'.  If it is
  found, `1' is returned; otherwise `0' is returned.

 SEE ALSO
   fsearch_char, ffind_char, fsearch
--------------------------------------------------------------

bfind_char

 SYNOPSIS
   bfind_char

 USAGE
   Integer fsearch_char (Integer ch);

 DESCRIPTION
  This function searches backward on the current line for a character
  `ch'.  If it is found, `1' is returned; otherwise `0' is returned.

 SEE ALSO
   fsearch_char, ffind_char, fsearch
--------------------------------------------------------------

ffind_char

 SYNOPSIS
   ffind_char

 USAGE
   Integer fsearch_char (Integer ch);

 DESCRIPTION
  This function searches forwardward on the current line for a character
  `ch'.  If it is found, `1' is returned; otherwise `0' is returned.

 SEE ALSO
   fsearch_char, bfind_char, fsearch
--------------------------------------------------------------

replace

 SYNOPSIS
   replace

 USAGE
   Void replace(String old, String new);

 DESCRIPTION
  This function may be used to replace all occurances of the string
  `old' with the string, `new', from current editing point to the end
  of the buffer. The editing point is returned to the initial location.
  That is, this function does not move the editing point.

 SEE ALSO
   replace_chars, fsearch, re_fsearch, bsearch, ffind, del
--------------------------------------------------------------

replace_chars

 SYNOPSIS
   replace_chars

 USAGE
   Void replace_chars (Integer n, String new);

 DESCRIPTION
  This function may be used to replace the next `n' characters at the
  editing position by the string `new'.  After the replacement, the editing
  point will be moved to the end of the inserted string.  The length of
  the replacement string `new' is returned.

 SEE ALSO
   fsearch, re_fsearch, bsearch, ffind, del
--------------------------------------------------------------

regexp_nth_match

 SYNOPSIS
   regexp_nth_match

 USAGE
   String regexp_nth_match (Integer n);

 DESCRIPTION
  This function returns the nth sub-expression matched by the last regular
  expression search.  If the parameter `n' is zero, the entire match is
  returned.
  Note: The value returned by this function is meaningful only if the
  editing point has not been moved since the match.

 SEE ALSO
   re_fsearch, re_bsearch
--------------------------------------------------------------

replace_match

 SYNOPSIS
   replace_match

 USAGE
   Integer replace_match(String s, Integer how);

 DESCRIPTION
  This function replaces text previously matched with `re_fsearch' or
  `re_bsearch' at the current editing point with string `s'.  If `how' is
  zero, `s' is a specially formatted string of the form described below.
  If `how' is non-zero, `s' is regarded as a simple string and is used
  literally.  If the replacement fails, this function returns zero
  otherwise, it returns non-zero.
--------------------------------------------------------------

re_fsearch

 SYNOPSIS
   re_fsearch

 USAGE
   Integer re_fsearch(String pattern);

 DESCRIPTION
  Search forward for regular expression `pattern'.  This function returns
  the 1 + length of the string  matched.  If no match is found, it returns
  0.

 SEE ALSO
   fsearch, bol_fsearch, re_bsearch
--------------------------------------------------------------

re_bsearch

 SYNOPSIS
   re_bsearch

 USAGE
   Integer re_bsearch(String pattern);

 DESCRIPTION
  Search backward for regular expression `pattern'.  This function returns
  the 1 + length of the string  matched.  If no match is found, it returns
  0.

 SEE ALSO
   bsearch, bol_bsearch, re_fsearch
--------------------------------------------------------------

is_visible_mark

 SYNOPSIS
   is_visible_mark

 USAGE
   is_visible_mark ();

 DESCRIPTION
  This function may be used to test whether or not the mark is a visible
  mark.  A visible mar is one which causes the region defined by it to
  be highlighted.
  It returns `1' is the mark is visible, or `0' if the mark
  is not visible or does not exist.

 SEE ALSO
   markp, push_mark
--------------------------------------------------------------

push_narrow

 SYNOPSIS
   push_narrow

 USAGE
   Void push_narrow ();

 DESCRIPTION
  This function saves the current narrow context.  This is useful when
  one wants to restore this context after widening the buffer.

 SEE ALSO
   pop_narrow, narrow, widen, widen_buffer
--------------------------------------------------------------

pop_narrow

 SYNOPSIS
   pop_narrow

 USAGE
   Void pop_narrow ();

 DESCRIPTION
  The purpose of this function is to restore the last narrow
  context that was saved via `push_narrow'.

 SEE ALSO
   push_narrow, widen, widen_buffer
--------------------------------------------------------------

set_blocal_var

 SYNOPSIS
   set_blocal_var

 USAGE
   Void set_blocal_var (val, String v);

 DESCRIPTION
  This function sets the value of the buffer local variable with name `v'
  to value `val'.  The buffer local variable specified by `v' must have
  been previously created by the `create_blocal_var' function.  `val' must
  have the type that was declared when `create_blocal_var' was called.

 SEE ALSO
   get_blocal_var, create_blocal_var
--------------------------------------------------------------

get_blocal_var

 SYNOPSIS
   get_blocal_var

 USAGE
   get_blocal_var (String name);

 DESCRIPTION
  This function returns the value of the buffer local variable specified
  by `name'.

 SEE ALSO
   set_blocal_var, create_blocal_var
--------------------------------------------------------------

create_blocal_var

 SYNOPSIS
   create_blocal_var

 USAGE
   Void create_blocal_var (String name, Integer type);

 DESCRIPTION
  This function is used to create a buffer local variable named `name'
  whose type is specified by `type'.  A buffer local variable is a
  variable whose value is local to the current buffer.  Currently only
  integer and string types are supported.  An integer is specifed if the
  parameter `type' is `'i'', and a string is specified if
  `type' is `'s''.

 SEE ALSO
   get_blocal_var, set_blocal_var
--------------------------------------------------------------

count_narrows

 SYNOPSIS
   count_narrows

 USAGE
   Integer count_narrows ();

 DESCRIPTION
  This function returns the narrow depth of the current buffer.

 SEE ALSO
   narrow, widen, widen_buffer, push_narrow
--------------------------------------------------------------

widen_buffer

 SYNOPSIS
   widen_buffer

 USAGE
   Void widen_buffer ();

 DESCRIPTION
  This function widens the whole buffer.  If one intends to restore the
  narrow context after calling this function, the narrow context should be
  saved via `push_narrow'.

 SEE ALSO
   narrow, widen, push_narrow, pop_narrow
--------------------------------------------------------------

get_jed_library_path

 SYNOPSIS
   get_jed_library_path

 USAGE
   String get_jed_library_path ();

 DESCRIPTION
  This function returns the current search path for jed library files.
  The path may be set using the function `set_jed_library_path'.

 SEE ALSO
   set_jed_library_path
--------------------------------------------------------------

set_jed_library_path

 SYNOPSIS
   set_jed_library_path

 USAGE
   Void set_jed_library_path (String p);

 DESCRIPTION
  This function may be used to set the search path for library files.
  Its parameter `p' may be a comma separated list of directories to
  search.  When the editor is first started, the path is initialized
  from the `JED_ROOT', or `JED_LIBRARY' environment variables.

 SEE ALSO
   get_jed_library_path
--------------------------------------------------------------

set_line_readonly

 SYNOPSIS
   set_line_readonly

 USAGE
   Void set_line_readonly (Integer flag);

 DESCRIPTION
  This function may be used to turn on or off the read-only state of the
  current line.  If the integer parameter `flag' is non-zero, the line
  will be made read-only.  If the paramter is zero, the read-only state
  will be turned off.

 SEE ALSO
   getbuf_info
--------------------------------------------------------------

set_line_hidden

 SYNOPSIS
   set_line_hidden

 USAGE
   Void set_line_hidden (Integer flag);

 DESCRIPTION
  If the parameter `flag' is non-zero, the current line will be given
  the hidden attribute.  This means that it will not be displayed.  If the
  parameter is zero, the hidden attribute will be turned off.

 SEE ALSO
   set_region_hidden, is_line_hidden
--------------------------------------------------------------

set_region_hidden

 SYNOPSIS
   set_region_hidden

 USAGE
   Void set_region_hidden (Integer flag);

 DESCRIPTION
  This function may be used to hide the lines in a region.  If `flag' is
  non-zero, all lines in the region will be hidden.  If it is zero, the
  lines in the region will be made visible.

 SEE ALSO
   set_line_hidden, is_line_hidden, skip_hidden_lines_forward
--------------------------------------------------------------

is_line_hidden

 SYNOPSIS
   is_line_hidden

 USAGE
   Integer is_line_hidden ();

 DESCRIPTION
  This function returns a non-zero value if the current line is hidden.  It
  will return zero if the current line is visible.

 SEE ALSO
   set_line_hidden
--------------------------------------------------------------

skip_hidden_lines_backward

 SYNOPSIS
   skip_hidden_lines_backward

 USAGE
   Void skip_hidden_lines_backward (Integer type);

 DESCRIPTION
  This function may be used to move backward across either hidden or non-hidden
  lines depending upon whether the parameter `type' is non-zero or zero.
  If `type' is non-zero, the Point is moved backward across hidden lines
  until a visible line is reached.  If `type' is zero, visible lines will
  be skipped instead.  If the top of the buffer is reached before the
  appropriate line is reached, the Point will be left there.

  Note: The functions `up' and `down' are insensitive to whether or not
  a line is hidden.

 SEE ALSO
   skip_hidden_lines_forward, is_line_hidden
--------------------------------------------------------------

skip_hidden_lines_forward

 SYNOPSIS
   skip_hidden_lines_forward

 USAGE
   Void skip_hidden_lines_forward (Integer type);

 DESCRIPTION
  This function may be used to move forward across either hidden or non-hidden
  lines depending upon whether the parameter `type' is non-zero or zero.
  If `type' is non-zero, the Point is moved forward across hidden lines
  until a visible line is reached.  If `type' is zero, visible lines will
  be skipped instead.  If the end of the buffer is reached before the
  appropriate line is reached, the Point will be left there.

  Note: The functions `up' and `down' are insensitive to whether or not
  a line is hidden.

 SEE ALSO
   skip_hidden_lines_backward, is_line_hidden
--------------------------------------------------------------

