diff options
| author | Jim Blandy | 1992-04-24 08:11:54 +0000 |
|---|---|---|
| committer | Jim Blandy | 1992-04-24 08:11:54 +0000 |
| commit | 4746118aca2d5cbdd054b4af4814d56550dfbc79 (patch) | |
| tree | 370e07c6950794f936bc8d434cb0560d883e4a0b /src/term.c | |
| parent | d4327fecc103493bc8275c3580b05c06c9fcc019 (diff) | |
| download | emacs-4746118aca2d5cbdd054b4af4814d56550dfbc79.tar.gz emacs-4746118aca2d5cbdd054b4af4814d56550dfbc79.zip | |
*** empty log message ***
Diffstat (limited to 'src/term.c')
| -rw-r--r-- | src/term.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/term.c b/src/term.c index c23723217e5..e9f7ddbcd18 100644 --- a/src/term.c +++ b/src/term.c | |||
| @@ -1,11 +1,11 @@ | |||
| 1 | /* terminal control module for terminals described by TERMCAP | 1 | /* terminal control module for terminals described by TERMCAP |
| 2 | Copyright (C) 1985, 1986, 1987 Free Software Foundation, Inc. | 2 | Copyright (C) 1985, 1986, 1987, 1992 Free Software Foundation, Inc. |
| 3 | 3 | ||
| 4 | This file is part of GNU Emacs. | 4 | This file is part of GNU Emacs. |
| 5 | 5 | ||
| 6 | GNU Emacs is free software; you can redistribute it and/or modify | 6 | GNU Emacs is free software; you can redistribute it and/or modify |
| 7 | it under the terms of the GNU General Public License as published by | 7 | it under the terms of the GNU General Public License as published by |
| 8 | the Free Software Foundation; either version 1, or (at your option) | 8 | the Free Software Foundation; either version 2, or (at your option) |
| 9 | any later version. | 9 | any later version. |
| 10 | 10 | ||
| 11 | GNU Emacs is distributed in the hope that it will be useful, | 11 | GNU Emacs is distributed in the hope that it will be useful, |
| @@ -465,6 +465,7 @@ change_line_highlight (new_highlight, vpos, first_unused_hpos) | |||
| 465 | /* Move to absolute position, specified origin 0 */ | 465 | /* Move to absolute position, specified origin 0 */ |
| 466 | 466 | ||
| 467 | cursor_to (row, col) | 467 | cursor_to (row, col) |
| 468 | int row, col; | ||
| 468 | { | 469 | { |
| 469 | if (! SCREEN_IS_TERMCAP ((updating_screen | 470 | if (! SCREEN_IS_TERMCAP ((updating_screen |
| 470 | ? updating_screen | 471 | ? updating_screen |
| @@ -488,6 +489,7 @@ cursor_to (row, col) | |||
| 488 | /* Similar but don't take any account of the wasted characters. */ | 489 | /* Similar but don't take any account of the wasted characters. */ |
| 489 | 490 | ||
| 490 | raw_cursor_to (row, col) | 491 | raw_cursor_to (row, col) |
| 492 | int row, col; | ||
| 491 | { | 493 | { |
| 492 | if (! SCREEN_IS_TERMCAP ((updating_screen ? updating_screen : selected_screen))) | 494 | if (! SCREEN_IS_TERMCAP ((updating_screen ? updating_screen : selected_screen))) |
| 493 | { | 495 | { |
| @@ -1393,6 +1395,7 @@ It may be necessary to do `unsetenv TERMCAP' as well.\n", | |||
| 1393 | 1395 | ||
| 1394 | /* VARARGS 1 */ | 1396 | /* VARARGS 1 */ |
| 1395 | fatal (str, arg1, arg2) | 1397 | fatal (str, arg1, arg2) |
| 1398 | char *str, *arg1, *arg2; | ||
| 1396 | { | 1399 | { |
| 1397 | fprintf (stderr, "emacs: "); | 1400 | fprintf (stderr, "emacs: "); |
| 1398 | fprintf (stderr, str, arg1, arg2); | 1401 | fprintf (stderr, str, arg1, arg2); |