summary refs log tree commit diff stats
path: root/nim/ropes.pas
diff options
context:
space:
mode:
Diffstat (limited to 'nim/ropes.pas')
-rw-r--r--nim/ropes.pas7
1 files changed, 2 insertions, 5 deletions
diff --git a/nim/ropes.pas b/nim/ropes.pas
index a6ba2a11b..864afd5b8 100644
--- a/nim/ropes.pas
+++ b/nim/ropes.pas
@@ -1,7 +1,7 @@
 //
 //
 //           The Nimrod Compiler
-//        (c) Copyright 2008 Andreas Rumpf
+//        (c) Copyright 2009 Andreas Rumpf
 //
 //    See the file "copying.txt", included in this
 //    distribution, for details about the copyright.
@@ -112,8 +112,6 @@ function ropef(const frmt: TFormatStr; const args: array of PRope): PRope;
 procedure appf(var c: PRope; const frmt: TFormatStr;
   const args: array of PRope);
 
-procedure RopeSeqInsert(var rs: TRopeSeq; r: PRope; at: Natural);
-
 function getCacheStats: string;
 
 function RopeEqualsFile(r: PRope; const f: string): Boolean;
@@ -524,8 +522,7 @@ begin
   assert(RopeInvariant(result));
 end;
 
-procedure appf(var c: PRope; const frmt: TFormatStr;
-  const args: array of PRope);
+procedure appf(var c: PRope; const frmt: TFormatStr; const args: array of PRope);
 begin
   app(c, ropef(frmt, args))
 end;