home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / Samples / CSAPE32.ARJ / SOURCE / CSSRC / SDRPTFLD.C < prev    next >
C/C++ Source or Header  |  1990-03-28  |  627b  |  32 lines

  1. /*
  2.     sdrptfld.c
  3.  
  4.     % sed_RepaintField
  5.  
  6.     C-scape 3.2
  7.     Copyright (c) 1986, 1987, by Oakland Group, Inc.
  8.     ALL RIGHTS RESERVED.
  9.  
  10.     Revision History:
  11.     -----------------
  12.     11/08/86 jmd    added calls to do_funcs
  13.     11/18/87 jmd     changed names of some low-level funcs
  14.  
  15.      3/28/90 jmd    ansi-fied
  16. */
  17.  
  18. #include "sed.h"
  19.  
  20. void sed_RepaintField(sed_type sed, int fieldno)
  21. /*
  22.     effects:    sets the record to the string passed, then refreshes
  23.                 the field to reflect its new contents.
  24.     modifies:    the sed.
  25. */
  26. {
  27.     cs_Assert(sed_Ok(sed), CS_SD_RPTF_SED, 0);
  28.  
  29.     sed_DoFieldSenter(sed, fieldno);
  30.     sd_refresh_field(sed, fieldno);
  31. }
  32.