diff options
author | dgp <dgp@users.sourceforge.net> | 2003-09-04 16:44:11 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2003-09-04 16:44:11 (GMT) |
commit | 50a76c2d9e2b751c9ca040cbb8308ca088f3d034 (patch) | |
tree | e4dab2e65e57de3f104811a01c704395859cc326 /generic/tcl.h | |
parent | dbcc5e83bdefe43d400134dba999965c93892c73 (diff) | |
download | tcl-50a76c2d9e2b751c9ca040cbb8308ca088f3d034.zip tcl-50a76c2d9e2b751c9ca040cbb8308ca088f3d034.tar.gz tcl-50a76c2d9e2b751c9ca040cbb8308ca088f3d034.tar.bz2 |
* doc/SplitList.3: Implementation of TIP 148. Fixes [Bug 489537].
* generic/tcl.h: Updated Tcl_ConvertCountedElement() to quote
* generic/tclUtil.c: the leading "#" character of all list elements
unless the TCL_DONT_QUOTE_HASH flag is passed in.
* generic/tclDictObj.c: Updated Tcl_ConvertCountedElement() callers
* generic/tclListObj.c: to pass in the TCL_DONT_QUOTE_HASH flags
* generic/tclResult.c: when appropriate.
Diffstat (limited to 'generic/tcl.h')
-rw-r--r-- | generic/tcl.h | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/generic/tcl.h b/generic/tcl.h index ccfa8c1..692cbf3 100644 --- a/generic/tcl.h +++ b/generic/tcl.h @@ -13,7 +13,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tcl.h,v 1.164 2003/08/27 06:58:43 davygrvy Exp $ + * RCS: @(#) $Id: tcl.h,v 1.165 2003/09/04 16:44:12 dgp Exp $ */ #ifndef _TCL @@ -994,11 +994,18 @@ typedef struct Tcl_DString { #define TCL_INTEGER_SPACE 24 /* - * Flag that may be passed to Tcl_ConvertElement to force it not to - * output braces (careful! if you change this flag be sure to change - * the definitions at the front of tclUtil.c). + * Flag values passed to Tcl_ConvertElement. + * TCL_DONT_USE_BRACES forces it not to enclose the element in braces, but + * to use backslash quoting instead. + * TCL_DONT_QUOTE_HASH disables the default quoting of the '#' character. + * It is safe to leave the hash unquoted when the element is not the + * first element of a list, and this flag can be used by the caller to + * indicated that condition. + * (careful! if you change these flag values be sure to change the + * definitions at the front of tclUtil.c). */ #define TCL_DONT_USE_BRACES 1 +#define TCL_DONT_QUOTE_HASH 8 /* * Flag that may be passed to Tcl_GetIndexFromObj to force it to disallow |