dcl-Grid-GetRowCells - returns as list

Started by Peter2 · 2016-09-08 13:04 UTC · 1 replies · SMF topic #2422

I have a row in my grid with these entries

"Johnny Walker" "28" "Good bye" "Mary has a little lamp"


dcl-Grid-GetRowCells gives me:
(Johnny Walker 28 Good bye Mary has a little lamp)

How to get a result like??
("Johnny Walker" "28" "Good bye" "Mary has a little lamp")

Peter
Perhaps you are using (princ) to display the return value. If so try using (print) instead.
To verify that a list of strings is returned you can use:
(princ (mapcar 'type (dcl-Grid-GetRowCells ...)))