STRING-CAPITALIZE
=================
syntax: (string-capitalize <string>
[:start <start> :end <end>])
This function returns the string with capitalized
characters (Only the first character of a word will
be capitalized!). Optionally a start- and end-
position can be set.
example: >(string-capitalize "this is a string")
"This Is A String"