diff options
| author | Eli Zaretskii | 2006-06-03 12:10:37 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2006-06-03 12:10:37 +0000 |
| commit | 04a1dad0855a77fc160d38c0b91a107168c97475 (patch) | |
| tree | 872ea201a3a787d7e73ed106ebf079a8624b12ad /lib-src | |
| parent | af6aef872b9d67b1e3ce755dbc1fbc18c61ce815 (diff) | |
| download | emacs-04a1dad0855a77fc160d38c0b91a107168c97475.tar.gz emacs-04a1dad0855a77fc160d38c0b91a107168c97475.zip | |
Remove the file.
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/leditcfns.c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/lib-src/leditcfns.c b/lib-src/leditcfns.c deleted file mode 100644 index 239db1cd1fa..00000000000 --- a/lib-src/leditcfns.c +++ /dev/null | |||
| @@ -1,21 +0,0 @@ | |||
| 1 | #include <sgtty.h> | ||
| 2 | #include <signal.h> | ||
| 3 | #define STRLEN 100 | ||
| 4 | static char str[STRLEN+1] = "%?emacs"; /* extra char for the null */ | ||
| 5 | |||
| 6 | switch_to_proc(){ | ||
| 7 | char *ptr = str; | ||
| 8 | while (*ptr) ioctl(0, TIOCSTI, ptr++); | ||
| 9 | ioctl(0, TIOCSTI, "\n"); | ||
| 10 | kill(getpid(), SIGTSTP); | ||
| 11 | } | ||
| 12 | |||
| 13 | set_proc_str(ptr) char *ptr; { | ||
| 14 | if (strlen(ptr) <= STRLEN) | ||
| 15 | strcpy(str, ptr); | ||
| 16 | else | ||
| 17 | printf("string too long for set-proc-str: %s\n", ptr); | ||
| 18 | } | ||
| 19 | |||
| 20 | /* arch-tag: eb7ae804-0d6e-4077-ab42-7173821410c3 | ||
| 21 | (do not change this comment) */ | ||