home *** CD-ROM | disk | FTP | other *** search
- /*
- sdmovfld.c 4/10/88
-
- % sed_MoveField
-
- C-scape 3.2
- Copyright (c) 1988, by Oakland Group, Inc.
- ALL RIGHTS RESERVED.
-
- Revision History:
- -----------------
- 3/24/89 jmd added sed_ macros
- 3/28/90 jmd ansi-fied
- */
-
- #include "sed.h"
-
- void sed_MoveField(sed_type sed, int fieldno, int row, int col)
- /*
- Move a field to a new location.
- */
- {
- menu_MoveField(sed_GetMenu(sed), fieldno, row, col);
-
- if (fieldno == sed_GetFieldNo(sed)) {
- /* adjust the cursor position */
- sd_adjust_cur(sed);
- }
- }
-
-