ole
unread,Oct 19, 2013, 1:44:17 PM10/19/13Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to symbolic...@googlegroups.com
Hi,
I was just reading what I can do with do-section, really powerful!
But I failed to use the last function:
(transp-section '(1 2 3) '((a a a) (b b b) (c c c)))
throws an error:
-->Undefined operator transp-value in form (transp-value (nth (- elem 1) pattern)).
Maybe wrong parameters, how to use?
(defun transp-section (position pattern)
(let ((out pattern))
(dolist (elem position)
(setq out
(do-section elem
#'(lambda (x)
(symbol-transpose
(transp-value (nth (- elem 1) pattern))
x))
out)))
out))
thanks
ole