Fossil

Check-in [29900f98f6]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Print the current status (including the current branch) after moving to the end branch in the "open" command.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 29900f98f61043b76eb46aadf3686fcb77e5bfb3
User & Date: drh 2009-01-29 03:36:00.000
Context
2009-01-29
23:04
Merge in kkinnell's documentation updates. check-in: 24c045f373 user: drh tags: trunk
03:36
Print the current status (including the current branch) after moving to the end branch in the "open" command. check-in: 29900f98f6 user: drh tags: trunk
03:28
Mention that fossil is GPL on the homepage. check-in: 0c72d85fbe user: drh tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/db.c.
1273
1274
1275
1276
1277
1278
1279


1280
1281
1282
1283
1284
1285
1286
  if( vid==0 ){
    db_lset_int("checkout", 1);
  }else{
    db_lset_int("checkout", vid);
    g.argv = azNewArgv;
    g.argc = 3;
    update_cmd();


  }
}

/*
** Print the value of a setting named zName
*/
static void print_setting(const char *zName){







>
>







1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
  if( vid==0 ){
    db_lset_int("checkout", 1);
  }else{
    db_lset_int("checkout", vid);
    g.argv = azNewArgv;
    g.argc = 3;
    update_cmd();
    g.argc = 2;
    info_cmd();
  }
}

/*
** Print the value of a setting named zName
*/
static void print_setting(const char *zName){