From: drh Date: Thu, 18 Nov 2004 02:10:55 +0000 (+0000) Subject: Fix an obsolete comment that resulted in incorrect documentation. X-Git-Tag: version-3.6.10~4041 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e854c5607b4096635ad8250805392bdbd5f60d65;p=thirdparty%2Fsqlite.git Fix an obsolete comment that resulted in incorrect documentation. Ticket #1003. (CVS 2109) FossilOrigin-Name: c93a9e18d2bf53690f577a901e0defd8a449d56a --- diff --git a/manifest b/manifest index f3458dbc2e..aa4fa06b5c 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Clarify\sthe\sdocumentation\sof\sthe\ssqlite3_create_function\sAPI.\nTicket\s#1004.\s(CVS\s2108) -D 2004-11-18T02:04:10 +C Fix\san\sobsolete\scomment\sthat\sresulted\sin\sincorrect\sdocumentation.\nTicket\s#1003.\s(CVS\s2109) +D 2004-11-18T02:10:55 F Makefile.in e747bb5ba34ccbdd81f79dcf1b2b33c02817c21d F Makefile.linux-gcc a9e5a0d309fa7c38e7c14d3ecf7690879d3a5457 F README a01693e454a00cc117967e3f9fdab2d4d52e9bc1 @@ -75,7 +75,7 @@ F src/update.c 395a2b270dfcbc96c20e40c9cb42b0533768ce30 F src/utf.c e45ce11be6922408cd381561721f6cca7d3b992a F src/util.c 005fdf2d008f3429d081766ad6098fdd86d8d8e6 F src/vacuum.c ecb4a2c6f1ac5cc9b394dc64d3bb14ca650c4f60 -F src/vdbe.c aba1ca8278fcce3ec0e01782631bc2751c44adf8 +F src/vdbe.c ba3a920731d43bcf2497d558238400369008531a F src/vdbe.h 067ca8d6750ba4f69a50284765e5883dee860181 F src/vdbeInt.h 6017100adff362b8dfa37a69e3f1431f084bfa5b F src/vdbeapi.c 74be7f96c0a1ac275661f8b32276ac521d9ce37c @@ -259,7 +259,7 @@ F www/tclsqlite.tcl 560ecd6a916b320e59f2917317398f3d59b7cc25 F www/vdbe.tcl 095f106d93875c94b47367384ebc870517431618 F www/version3.tcl 092a01f5ef430d2c4acc0ae558d74c4bb89638a0 F www/whentouse.tcl fdacb0ba2d39831e8a6240d05a490026ad4c4e4c -P 49268c2b7a84c4c618214dac8bef0f541440fe6b -R c7e2f2bcd67bb83b19d12dfad1291e08 +P ae45ad863b0854b96da31321c500e3168ef103ad +R 058dba7580f8046da9393524c9e0b47a U drh -Z e7702686ea3300d9e8466a18af72cd51 +Z c7a24402458bd079da88801ec8f8c5f3 diff --git a/manifest.uuid b/manifest.uuid index 6e3efc523a..3da4a124ad 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -ae45ad863b0854b96da31321c500e3168ef103ad \ No newline at end of file +c93a9e18d2bf53690f577a901e0defd8a449d56a \ No newline at end of file diff --git a/src/vdbe.c b/src/vdbe.c index 697a9188dd..31ecea193c 100644 --- a/src/vdbe.c +++ b/src/vdbe.c @@ -43,7 +43,7 @@ ** in this file for details. If in doubt, do not deviate from existing ** commenting and indentation practices when changing or adding code. ** -** $Id: vdbe.c,v 1.429 2004/11/15 23:42:28 drh Exp $ +** $Id: vdbe.c,v 1.430 2004/11/18 02:10:55 drh Exp $ */ #include "sqliteInt.h" #include "os.h" @@ -3983,7 +3983,7 @@ case OP_ContextPop: { ** ** The TOS is the key and the NOS is the data. Pop both from the stack ** and put them on the sorter. The key and data should have been -** made using SortMakeKey and SortMakeRec, respectively. +** made using the MakeRecord opcode. */ case OP_SortPut: { Mem *pNos = &pTos[-1];