diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2024-06-04 15:35:14 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2024-06-04 15:35:14 (GMT) |
commit | 14e9a4e0bda3c86ac11baf3c11f900a5837ea70a (patch) | |
tree | ea245cdd3ace1d0ea075a51e59d0b5044fc86bf2 /generic/tclIO.h | |
parent | 1719e80d015d40d514bb9209a921525b2d667d9c (diff) | |
download | tcl-14e9a4e0bda3c86ac11baf3c11f900a5837ea70a.zip tcl-14e9a4e0bda3c86ac11baf3c11f900a5837ea70a.tar.gz tcl-14e9a4e0bda3c86ac11baf3c11f900a5837ea70a.tar.bz2 |
Space before tab is an extremely unlikely to be correct indentation pattern
Diffstat (limited to 'generic/tclIO.h')
-rw-r--r-- | generic/tclIO.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclIO.h b/generic/tclIO.h index 8823e06..d1f4a0a 100644 --- a/generic/tclIO.h +++ b/generic/tclIO.h @@ -39,12 +39,12 @@ typedef struct ChannelBuffer { Tcl_Size refCount; /* Current uses count */ Tcl_Size nextAdded; /* The next position into which a character * will be put in the buffer. */ - Tcl_Size nextRemoved; /* Position of next byte to be removed from + Tcl_Size nextRemoved; /* Position of next byte to be removed from * the buffer. */ Tcl_Size bufLength; /* How big is the buffer? */ struct ChannelBuffer *nextPtr; - /* Next buffer in chain. */ - char buf[TCLFLEXARRAY]; /* Placeholder for real buffer. The real + /* Next buffer in chain. */ + char buf[TCLFLEXARRAY]; /* Placeholder for real buffer. The real * buffer occupies this space + bufSize-1 * bytes. This must be the last field in the * structure. */ |