diff options
author | drh <drh@noemail.net> | 2014-09-08 15:04:24 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2014-09-08 15:04:24 +0000 |
commit | a4a8a3c22e60402ac604b70adc471d37aaae5daa (patch) | |
tree | cb2a6eee3bc9f16956aea78d68b7399e94c10c44 /src/tclsqlite.c | |
parent | bf9ed6f9af8db145efb7294b1bb05b35fc70e7fc (diff) | |
parent | 524a733d89355f01eac235d926e97b5cd6836b98 (diff) | |
download | sqlite-a4a8a3c22e60402ac604b70adc471d37aaae5daa.tar.gz sqlite-a4a8a3c22e60402ac604b70adc471d37aaae5daa.zip |
Merge support for large files on Android from trunk.
FossilOrigin-Name: c2885c6bb24cc55178467e57e77bf71df58b3b13
Diffstat (limited to 'src/tclsqlite.c')
-rw-r--r-- | src/tclsqlite.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tclsqlite.c b/src/tclsqlite.c index 791a58b42..2f848c059 100644 --- a/src/tclsqlite.c +++ b/src/tclsqlite.c @@ -804,7 +804,7 @@ static void tclSqlFunc(sqlite3_context *context, int argc, sqlite3_value**argv){ /* If there are arguments to the function, make a shallow copy of the ** script object, lappend the arguments, then evaluate the copy. ** - ** By "shallow" copy, we mean a only the outer list Tcl_Obj is duplicated. + ** By "shallow" copy, we mean only the outer list Tcl_Obj is duplicated. ** The new Tcl_Obj contains pointers to the original list elements. ** That way, when Tcl_EvalObjv() is run and shimmers the first element ** of the list to tclCmdNameType, that alternate representation will |