view lib-src/leditcfns.c @ 2170:3f45176fe02f

Wed Mar 10 23:00:51 1993 Jim Blandy (jimb@totoro.cs.oberlin.edu) * MACHINES: Update description of SYSVr3 and r4 support, due to Eric Raymond's changes. Tue Mar 9 10:57:57 1993 Jim Blandy (jimb@totoro.cs.oberlin.edu) * MACHINES: Mention that you have to edit the configure script when you add support for a new machine, to get it to recognize the configuration name.
author Jim Blandy <jimb@redhat.com>
date Sun, 14 Mar 1993 20:34:26 +0000
parents da530eb93c1a
children 695cf19ef79e
line wrap: on
line source

#include <sgtty.h>
#include <signal.h>
#define STRLEN 100
static char str[STRLEN+1] = "%?emacs"; /* extra char for the null */

switch_to_proc(){
    char *ptr = str;
    while (*ptr) ioctl(0, TIOCSTI, ptr++);
    ioctl(0, TIOCSTI, "\n");
    kill(getpid(), SIGTSTP);
    }

set_proc_str(ptr) char *ptr; {
    if (strlen(ptr) <= STRLEN)
	strcpy(str, ptr);
    else
	printf("string too long for set-proc-str: %s\n", ptr);
    }