summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixChan.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2025-05-23 09:03:35 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2025-05-23 09:03:35 (GMT)
commit9aadfdb56c6e990834014f27913cf86a7ff0d1b5 (patch)
tree3fa9d40e0a401205aa9a56f19368d154fd52c2ed /unix/tclUnixChan.c
parentc0d43e104e7227874a6bd40a522a4c25f1b03a6d (diff)
downloadtcl-9aadfdb56c6e990834014f27913cf86a7ff0d1b5.zip
tcl-9aadfdb56c6e990834014f27913cf86a7ff0d1b5.tar.gz
tcl-9aadfdb56c6e990834014f27913cf86a7ff0d1b5.tar.bz2
Clean up indentation and overlong lines
Diffstat (limited to 'unix/tclUnixChan.c')
-rw-r--r--unix/tclUnixChan.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/unix/tclUnixChan.c b/unix/tclUnixChan.c
index ac4734c..7389a3d 100644
--- a/unix/tclUnixChan.c
+++ b/unix/tclUnixChan.c
@@ -1199,11 +1199,13 @@ TtyGetOptionProc(
tcgetattr(fsPtr->fileState.fd, &iostate);
Tcl_DStringInit(&ds);
- Tcl_ExternalToUtfDStringEx(NULL, NULL, (char *) &iostate.c_cc[VSTART], 1, TCL_ENCODING_PROFILE_TCL8, &ds, NULL);
+ Tcl_ExternalToUtfDStringEx(NULL, NULL, (char *) &iostate.c_cc[VSTART],
+ 1, TCL_ENCODING_PROFILE_TCL8, &ds, NULL);
Tcl_DStringAppendElement(dsPtr, Tcl_DStringValue(&ds));
TclDStringClear(&ds);
- Tcl_ExternalToUtfDStringEx(NULL, NULL, (char *) &iostate.c_cc[VSTOP], 1, TCL_ENCODING_PROFILE_TCL8, &ds, NULL);
+ Tcl_ExternalToUtfDStringEx(NULL, NULL, (char *) &iostate.c_cc[VSTOP],
+ 1, TCL_ENCODING_PROFILE_TCL8, &ds, NULL);
Tcl_DStringAppendElement(dsPtr, Tcl_DStringValue(&ds));
Tcl_DStringFree(&ds);
}