summaryrefslogtreecommitdiffstats
path: root/generic
diff options
context:
space:
mode:
authorapnadkarni <apnmbx-wits@yahoo.com>2023-03-16 03:08:12 (GMT)
committerapnadkarni <apnmbx-wits@yahoo.com>2023-03-16 03:08:12 (GMT)
commita3c59e320df775f0d6849e5d3163292280b3b386 (patch)
tree9f55e8b7dae5000e4fd2b331b110b9ab166ed78e /generic
parent87b3bcc550bf664f70450f509faabb9584062890 (diff)
downloadtcl-a3c59e320df775f0d6849e5d3163292280b3b386.zip
tcl-a3c59e320df775f0d6849e5d3163292280b3b386.tar.gz
tcl-a3c59e320df775f0d6849e5d3163292280b3b386.tar.bz2
Change -encodingprofile to -profile
Diffstat (limited to 'generic')
-rw-r--r--generic/tclIO.c58
1 files changed, 29 insertions, 29 deletions
diff --git a/generic/tclIO.c b/generic/tclIO.c
index f24eaa0..dbdbda5 100644
--- a/generic/tclIO.c
+++ b/generic/tclIO.c
@@ -7810,7 +7810,7 @@ Tcl_BadChannelOption(
{
if (interp != NULL) {
const char *genericopt =
- "blocking buffering buffersize encoding encodingprofile eofchar translation";
+ "blocking buffering buffersize encoding eofchar profile translation";
const char **argv;
int argc, i;
Tcl_DString ds;
@@ -7951,7 +7951,7 @@ Tcl_GetChannelOption(
return TCL_OK;
}
}
- if (len == 0 || HaveOpt(8, "-encoding")) {
+ if (len == 0 || HaveOpt(2, "-encoding")) {
if (len == 0) {
Tcl_DStringAppendElement(dsPtr, "-encoding");
}
@@ -7965,23 +7965,6 @@ Tcl_GetChannelOption(
return TCL_OK;
}
}
- if (len == 0 || HaveOpt(9, "-encodingprofile")) {
- int profile;
- const char *profileName;
- if (len == 0) {
- Tcl_DStringAppendElement(dsPtr, "-encodingprofile");
- }
- /* Note currently input and output profiles are same */
- profile = TCL_ENCODING_PROFILE_GET(statePtr->inputEncodingFlags);
- profileName = TclEncodingProfileIdToName(interp, profile);
- if (profileName == NULL) {
- return TCL_ERROR;
- }
- Tcl_DStringAppendElement(dsPtr, profileName);
- if (len > 0) {
- return TCL_OK;
- }
- }
if (len == 0 || HaveOpt(2, "-eofchar")) {
if (len == 0) {
Tcl_DStringAppendElement(dsPtr, "-eofchar");
@@ -8025,6 +8008,23 @@ Tcl_GetChannelOption(
return TCL_OK;
}
}
+ if (len == 0 || HaveOpt(1, "-profile")) {
+ int profile;
+ const char *profileName;
+ if (len == 0) {
+ Tcl_DStringAppendElement(dsPtr, "-profile");
+ }
+ /* Note currently input and output profiles are same */
+ profile = TCL_ENCODING_PROFILE_GET(statePtr->inputEncodingFlags);
+ profileName = TclEncodingProfileIdToName(interp, profile);
+ if (profileName == NULL) {
+ return TCL_ERROR;
+ }
+ Tcl_DStringAppendElement(dsPtr, profileName);
+ if (len > 0) {
+ return TCL_OK;
+ }
+ }
if (len == 0 || HaveOpt(1, "-translation")) {
if (len == 0) {
Tcl_DStringAppendElement(dsPtr, "-translation");
@@ -8194,7 +8194,7 @@ Tcl_SetChannelOption(
}
Tcl_SetChannelBufferSize(chan, newBufferSize);
return TCL_OK;
- } else if (HaveOpt(8, "-encoding")) {
+ } else if (HaveOpt(2, "-encoding")) {
Tcl_Encoding encoding;
int profile;
@@ -8230,15 +8230,6 @@ Tcl_SetChannelOption(
ResetFlag(statePtr, CHANNEL_NEED_MORE_DATA|CHANNEL_ENCODING_ERROR);
UpdateInterest(chanPtr);
return TCL_OK;
- } else if (HaveOpt(9, "-encodingprofile")) {
- int profile;
- if (TclEncodingProfileNameToId(interp, newValue, &profile) != TCL_OK) {
- return TCL_ERROR;
- }
- TCL_ENCODING_PROFILE_SET(statePtr->inputEncodingFlags, profile);
- TCL_ENCODING_PROFILE_SET(statePtr->outputEncodingFlags, profile);
- ResetFlag(statePtr, CHANNEL_NEED_MORE_DATA|CHANNEL_ENCODING_ERROR);
- return TCL_OK;
} else if (HaveOpt(2, "-eofchar")) {
if (!newValue[0] || (!(newValue[0] & 0x80) && !newValue[1])) {
if (GotFlag(statePtr, TCL_READABLE)) {
@@ -8294,6 +8285,15 @@ Tcl_SetChannelOption(
ResetFlag(statePtr, CHANNEL_EOF|CHANNEL_STICKY_EOF|CHANNEL_BLOCKED);
statePtr->inputEncodingFlags &= ~TCL_ENCODING_END;
return TCL_OK;
+ } else if (HaveOpt(1, "-profile")) {
+ int profile;
+ if (TclEncodingProfileNameToId(interp, newValue, &profile) != TCL_OK) {
+ return TCL_ERROR;
+ }
+ TCL_ENCODING_PROFILE_SET(statePtr->inputEncodingFlags, profile);
+ TCL_ENCODING_PROFILE_SET(statePtr->outputEncodingFlags, profile);
+ ResetFlag(statePtr, CHANNEL_NEED_MORE_DATA|CHANNEL_ENCODING_ERROR);
+ return TCL_OK;
} else if (HaveOpt(1, "-translation")) {
const char *readMode, *writeMode;