annotate lib-src/leditcfns.c @ 1990:c7d6c746fea6

Use the term `scroll bar', instead of `scrollbar'. * alloc.c, frame.c, frame.h, indent.c, keyboard.c, keyboard.h, lisp.h, term.c, termhooks.h, window.c, window.h, xdisp.c, xfns.c, xterm.c, xterm.h: Terminology changed. * xterm.c (x_window_to_scrollbar, x_scrollbar_expose, x_scrollbar_handle_click, x_scrollbar_note_movement): Remember that these can be called during GC; we have to ignore mark bits. * lisp.h (GC_NILP, GC_EQ): New macros to help with that. * lisp.h (RETURN_UNGCPRO): Remove "do ... while (0)" wrapper around macro.
author Jim Blandy <jimb@redhat.com>
date Tue, 02 Mar 1993 08:16:00 +0000
parents da530eb93c1a
children 695cf19ef79e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
da530eb93c1a entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1 #include <sgtty.h>
da530eb93c1a entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2 #include <signal.h>
da530eb93c1a entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3 #define STRLEN 100
da530eb93c1a entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4 static char str[STRLEN+1] = "%?emacs"; /* extra char for the null */
da530eb93c1a entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5
da530eb93c1a entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6 switch_to_proc(){
da530eb93c1a entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7 char *ptr = str;
da530eb93c1a entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
8 while (*ptr) ioctl(0, TIOCSTI, ptr++);
da530eb93c1a entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
9 ioctl(0, TIOCSTI, "\n");
da530eb93c1a entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
10 kill(getpid(), SIGTSTP);
da530eb93c1a entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
11 }
da530eb93c1a entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
12
da530eb93c1a entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
13 set_proc_str(ptr) char *ptr; {
da530eb93c1a entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
14 if (strlen(ptr) <= STRLEN)
da530eb93c1a entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
15 strcpy(str, ptr);
da530eb93c1a entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
16 else
da530eb93c1a entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
17 printf("string too long for set-proc-str: %s\n", ptr);
da530eb93c1a entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
18 }