diff options
author | Jim Blandy <jimb@redhat.com> | 1992-06-30 13:54:21 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1992-06-30 13:54:21 +0000 |
commit | 8a097b5b08f3e017994e2df07a618d58fc023df3 (patch) | |
tree | daa1bb7d7f8787084cece10dbc017eaf68cfab16 /src/scroll.c | |
parent | c46996887ff22382a0c27c882a38ddcdd5e71415 (diff) | |
download | emacs-8a097b5b08f3e017994e2df07a618d58fc023df3.tar.gz |
*** empty log message ***
Diffstat (limited to 'src/scroll.c')
-rw-r--r-- | src/scroll.c | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/src/scroll.c b/src/scroll.c index 64dfd9aef25..ed45318a26b 100644 --- a/src/scroll.c +++ b/src/scroll.c @@ -1,11 +1,11 @@ /* Calculate what line insertion or deletion to do, and do it, - Copyright (C) 1985, 1986, 1990 Free Software Foundation, Inc. + Copyright (C) 1985, 1986, 1990, 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, @@ -54,15 +54,6 @@ struct matrix_elt char deletecount; }; -/* See do_line_insertion_deletion_costs for info on these arrays. */ - -#ifndef MULTI_SCREEN -static int *insert_line_cost; -static int *delete_line_cost; -static int *insert_n_lines_cost; -static int *delete_n_lines_cost; -#endif - /* Determine, in matrix[i,j], the cost of updating the first j old lines into the first i new lines. |