view lib-src/leditcfns.c @ 51604:f57bfce0ddaf

Version 2.0.35 of Tramp released. From Michael Albinus <Michael.Albinus@alcatel.de>: (Inline methods): Add methods `remsh' and `plink1'. (External transfer methods): Add method `remcp'. (Multi-hop Methods): Add method `remsh'. Small patch from Adrian Aichner <adrian@xemacs.org>: Fix minor typos. (Concept Index): Added to make manual searchable via `Info-index'. (Version Control): Add cindex entry.
author Kai Großjohann <kgrossjo@eu.uu.net>
date Tue, 17 Jun 2003 14:05:19 +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);
    }