Version Control with Subversion by Ben Collins-Sussman, Brian W. Fitzpatrick, C. Michael Pilato The following errata were *corrected* in the 10/05 reprint of "Version Control with Subversion": Here's a key to the markup: [page-number]: serious technical mistake {page-number}: minor technical mistake : important language/formatting problem (page-number): language change or minor formatting problem (xv) last line of the page; http://www.oreilly.com/catalog/postfix NOW READS: http://www.oreilly.com/catalog/0596004486/ (31) svn status output; $ svn status L abc.c # svn has a lock in its .svn directory for abc.c M bar.c # the content in bar.c has local modifications M baz.c # baz.c has property but no content modifications X 3rd_party # this dir is part of an externals definition ? foo.o # svn doesn't manage foo.o ! some_dir # svn manages this, but it's either missing or incomplete ~ qux # versioned as dir, but is file, or vice versa I .screenrc # this file is ignored A + moved_dir # added with history of where it came from M + moved_dir/README # added with history and has local modifications D stuff/fish.c # this file is scheduled for deletion A stuff/loot/bloo.h # this file is scheduled for addition C stuff/loot/lump.c # this file has conflicts from an update S stuff/squawk # this file or dir has been switched to a branch ... NOW READS: $ svn status L abc.c # svn has a lock in its .svn directory for abc.c M bar.c # the content in bar.c has local modifications M baz.c # baz.c has property but no content modifications X 3rd_party # this dir is part of an externals definition ? foo.o # svn doesn't manage foo.o ! some_dir # svn manages this, but it's either missing or incomplete ~ qux # versioned as dir, but is file, or vice versa I .screenrc # this file is ignored A + moved_dir # added with history of where it came from M + moved_dir/README # added with history and has local modifications D stuff/fish.c # this file is scheduled for deletion A stuff/loot/bloo.h # this file is scheduled for addition C stuff/loot/lump.c # this file has conflicts from an update S stuff/squawk # this file or dir has been switched to a branch ... (106), the 2nd code listing; the second code listing on the page had a "&hellip" which was an untranslated ellipsis. This HAS BEEN CORRECTED to appear as "..." as in the prior examples.