The descriptions are limited by mysql varchar field. Only way to make them longer would be to say change the field to a text field which would require you to alter the database possibly with a query like this
ALTER TABLE pp_categories CHANGE description description TEXT default NULL;