aboutsummaryrefslogtreecommitdiffstats
path: root/src/term.c
diff options
context:
space:
mode:
authorJim Blandy1992-04-24 08:11:54 +0000
committerJim Blandy1992-04-24 08:11:54 +0000
commit4746118aca2d5cbdd054b4af4814d56550dfbc79 (patch)
tree370e07c6950794f936bc8d434cb0560d883e4a0b /src/term.c
parentd4327fecc103493bc8275c3580b05c06c9fcc019 (diff)
downloademacs-4746118aca2d5cbdd054b4af4814d56550dfbc79.tar.gz
emacs-4746118aca2d5cbdd054b4af4814d56550dfbc79.zip
*** empty log message ***
Diffstat (limited to 'src/term.c')
-rw-r--r--src/term.c7
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
4This file is part of GNU Emacs. 4This file is part of GNU Emacs.
5 5
6GNU Emacs is free software; you can redistribute it and/or modify 6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by 7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 1, or (at your option) 8the Free Software Foundation; either version 2, or (at your option)
9any later version. 9any later version.
10 10
11GNU Emacs is distributed in the hope that it will be useful, 11GNU 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
467cursor_to (row, col) 467cursor_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
490raw_cursor_to (row, col) 491raw_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 */
1395fatal (str, arg1, arg2) 1397fatal (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);