diff options
author | das <das> | 2007-02-23 13:37:49 (GMT) |
---|---|---|
committer | das <das> | 2007-02-23 13:37:49 (GMT) |
commit | 10f9e4c0170ab04b7570c5b38cb8ba434e996cfa (patch) | |
tree | 9990bb1fa2e042a2efc6a5e79de61829ecbd243c | |
parent | dde89e53698859ca30c7ef441d2b64350d2a8187 (diff) | |
download | tk-10f9e4c0170ab04b7570c5b38cb8ba434e996cfa.zip tk-10f9e4c0170ab04b7570c5b38cb8ba434e996cfa.tar.gz tk-10f9e4c0170ab04b7570c5b38cb8ba434e996cfa.tar.bz2 |
missing comma in previous commit
-rw-r--r-- | generic/tkTextBTree.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkTextBTree.c b/generic/tkTextBTree.c index 9b104c6..912dc90 100644 --- a/generic/tkTextBTree.c +++ b/generic/tkTextBTree.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkTextBTree.c,v 1.24 2007/02/22 13:56:33 dkf Exp $ + * RCS: @(#) $Id: tkTextBTree.c,v 1.25 2007/02/23 13:37:49 das Exp $ */ #include "tkInt.h" @@ -1812,7 +1812,7 @@ TkBTreeNextLine( TkTextLine * TkBTreePreviousLine( - TkText *textPtr /* Relative to this client of the B-tree. */ + TkText *textPtr, /* Relative to this client of the B-tree. */ register TkTextLine *linePtr) /* Pointer to existing line in B-tree. */ { |