If a cell has a double quote (an escaped quotation mark) as the first characters in the cell then an exception is thrown.
For example:
(csv/read-csv "this,\"\"that\"\",the other")
produces:
{color:red}
Exception CSV error (unexpected character: t) clojure.data.csv/read-quoted-cell (csv.clj:36)
{color}
but this:
(csv/read-csv "this, \"\"that\"\",the other")
produces this correct output:
((link: "this" " \"\"that\"\"" "the other"))