We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 190dfed commit fee8b25Copy full SHA for fee8b25
irteus/irtmodel.l
@@ -2575,7 +2575,9 @@
2575
(dotimes (i (/ (length print-args) 2)) ;; escape list
2576
(unless (eq (elt print-args (* 2 i)) :move-target) ;; neglect :move-target because move-target is fixed later
2577
(escape-list print-args (+ 1 (* 2 i)))))
2578
- (dotimes (i (length print-args)) (escape-robot-link print-args i)) ;; escape robot link
+ (dotimes (i (/ (length print-args) 2)) ;; escape list
2579
+ (unless (eq (elt print-args (* 2 i)) :move-target) ;; neglect :move-target because move-target is fixed later
2580
+ (escape-robot-link print-args (+ 1 (* 2 i))))) ;; escape robot link
2581
(dotimes (j (count :move-target print-args)) ;; escape move-target
2582
(if (setq i (position :move-target print-args :count (1+ j)))
2583
(cond ((atom (elt print-args (+ i 1)))
0 commit comments