Chapter 10. The Form API, Page 240

Location on the page: 
bottom
Chapter: 
10. The Form API
Error: 

function formexample_nameform_validate($form, $form_state) {

Correction: 

function formexample_nameform_validate($form, &$form_state) {

Description of the Error: 

Pass $form_state by reference so that a form_set_value() call would work.