Mercurial > emacs
view lib-src/leditcfns.c @ 7275:cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
(ielm-return): Support it.
(ielm-print-working-buffer): New command
(ielm-change-working-buffer): New command
(ielm-display-working-buffer): New command
(ielm-map): Bindings for new commands; bindings from
shared-lisp-mode-map; Lemacs support.
(ielm-eval-input): Give bindings in scope during the eval
non-clashing names (ielm- prefix)
(ielm-get-old-input): New function
(inferior-emacs-lisp-mode): Bind it to comint-get-old-input
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 02 May 1994 17:13:42 +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); }