(repeat n
(setq var (entget (ssname e i))
old (assoc 40 var)
new (cons 40 ts)
cc (subst new old var))
(entmod cc)
(setq i (1+ i)))
(princ))에서 (1+ i)))부분를 (+1 i)이렇게않하는이유가 뭔가요?