diff options
author | Kenichi Handa <handa@m17n.org> | 1999-12-06 04:47:25 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 1999-12-06 04:47:25 +0000 |
commit | 94ef31ccadfb7a1435b04d163a1cfd8437203cc1 (patch) | |
tree | a0a19af6ddca8b97ed3cc1156d47ef5221bd0355 /src/insdel.c | |
parent | 98a7d2683c0b7c7605c2cefd5f3e6292e410514f (diff) | |
download | emacs-94ef31ccadfb7a1435b04d163a1cfd8437203cc1.tar.gz |
(adjust_markers_for_delete): Make it non-static.
Diffstat (limited to 'src/insdel.c')
-rw-r--r-- | src/insdel.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/insdel.c b/src/insdel.c index f9b38602357..72c380b5173 100644 --- a/src/insdel.c +++ b/src/insdel.c @@ -41,7 +41,7 @@ static void gap_left P_ ((int, int, int)); static void gap_right P_ ((int, int)); static void adjust_markers_gap_motion P_ ((int, int, int)); static void adjust_markers_for_insert P_ ((int, int, int, int, int, int, int)); -static void adjust_markers_for_delete P_ ((int, int, int, int)); +adjust_markers_for_delete P_ ((int, int, int, int)); static void adjust_markers_for_record_delete P_ ((int, int, int, int)); static void adjust_point P_ ((int, int)); @@ -341,7 +341,6 @@ adjust_markers_gap_motion (from, to, amount) This function assumes that the gap is adjacent to or inside of the range being deleted. */ -static void adjust_markers_for_delete (from, from_byte, to, to_byte) register int from, from_byte, to, to_byte; { |