diff src/term.c @ 621:eca8812e61cd

*** empty log message ***
author Jim Blandy <jimb@redhat.com>
date Fri, 24 Apr 1992 08:11:54 +0000
parents 31e638e8fe93
children a8d94735277e
line wrap: on
line diff
--- a/src/term.c	Fri Apr 24 08:11:28 1992 +0000
+++ b/src/term.c	Fri Apr 24 08:11:54 1992 +0000
@@ -1,11 +1,11 @@
 /* terminal control module for terminals described by TERMCAP
-   Copyright (C) 1985, 1986, 1987 Free Software Foundation, Inc.
+   Copyright (C) 1985, 1986, 1987, 1992 Free Software Foundation, Inc.
 
 This file is part of GNU Emacs.
 
 GNU Emacs is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 1, or (at your option)
+the Free Software Foundation; either version 2, or (at your option)
 any later version.
 
 GNU Emacs is distributed in the hope that it will be useful,
@@ -465,6 +465,7 @@
 /* Move to absolute position, specified origin 0 */
 
 cursor_to (row, col)
+     int row, col;
 {
   if (! SCREEN_IS_TERMCAP ((updating_screen
 			    ? updating_screen
@@ -488,6 +489,7 @@
 /* Similar but don't take any account of the wasted characters.  */
 
 raw_cursor_to (row, col)
+     int row, col;
 {
   if (! SCREEN_IS_TERMCAP ((updating_screen ? updating_screen : selected_screen)))
     {
@@ -1393,6 +1395,7 @@
 
 /* VARARGS 1 */
 fatal (str, arg1, arg2)
+     char *str, *arg1, *arg2;
 {
   fprintf (stderr, "emacs: ");
   fprintf (stderr, str, arg1, arg2);