]> git.eshelyaron.com Git - emacs.git/commitdiff
* xterm.c (x_create_terminal): Add comment.
authorDan Nicolaescu <dann@ics.uci.edu>
Mon, 10 Sep 2007 21:25:32 +0000 (21:25 +0000)
committerDan Nicolaescu <dann@ics.uci.edu>
Mon, 10 Sep 2007 21:25:32 +0000 (21:25 +0000)
* term.c (clear_tty_hooks, set_tty_hooks): Add comments.

src/ChangeLog
src/term.c
src/xterm.c

index 6aa1939be51ec38ea1acd32d7f6101319f31f45b..c1a03ed3e858d607c077e2f634835a2624ac386d 100644 (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.
index 2ed6435c34459855b6976fc5fda7c6cd747ecab9..144b14a1e3fbe323a102acd1ff9d1cbdedf65a72 100644 (file)
@@ -3039,6 +3039,7 @@ delete_tty_output (struct frame *f)
 }
 
 \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)
 {
index af35fbe87992fdcfa8ada888655d3ff1d8f62387..9e85967ba42ef18a24c52cebfe9ef8b702825463 100644 (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)