1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-24 07:20:37 +00:00

* xterm.c (x_create_terminal): Add comment.

* term.c (clear_tty_hooks, set_tty_hooks): Add comments.
This commit is contained in:
Dan Nicolaescu 2007-09-10 21:25:32 +00:00
parent 9cab96b06b
commit 47cc881946
3 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2007-09-10 Dan Nicolaescu <dann@ics.uci.edu>
* xterm.c (x_create_terminal): Add comment.
* term.c (clear_tty_hooks, set_tty_hooks): Add comments.
2007-09-10 Richard Stallman <rms@gnu.org>
* xterm.c (x_term_init): Give error if can't open DISPLAY_NAME.

View File

@ -3039,6 +3039,7 @@ delete_tty_output (struct frame *f)
}
/* Reset the hooks in TERMINAL. */
static void
clear_tty_hooks (struct terminal *terminal)
@ -3076,6 +3077,8 @@ clear_tty_hooks (struct terminal *terminal)
terminal->delete_terminal_hook = &delete_tty;
}
/* Initialize hooks in TERMINAL with the values needed for a tty. */
static void
set_tty_hooks (struct terminal *terminal)
{

View File

@ -11338,6 +11338,8 @@ x_delete_terminal (struct terminal *terminal)
UNBLOCK_INPUT;
}
/* Create a struct terminal, initialize it with the X11 specific
functions and make DISPLAY->TERMINAL point to it. */
static struct terminal *
x_create_terminal (struct x_display_info *dpyinfo)