Skip to content

Commit beb2a01

Browse files
committed
Fix default values
1 parent 8427943 commit beb2a01

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ag_base.lsp

+1-1
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@
168168
;; (eval (read var_name)) read from var
169169
;; (set (read var_name) x) write x on var
170170

171-
(if (null (eval (read var_name))) (set (read var_name) 2000))
171+
(if (null (eval (read var_name))) (set (read var_name) 720))
172172
(setq msg (strcat "\n" name " <" (itoa (eval (read var_name))) ">: "))
173173
(initget 4)
174174
(if (setq comp (getint msg))

ag_pdrm.lsp

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
(defun ag:Pdrm (n passo comp_ant comp_port1 comp_port2 comp_post vel cor point ang / larg rect blockname)
66

77
(setq blockname (CreateBlkName
8-
(list "PSRM"
8+
(list "PDRM"
99
(itoa n)
1010
(itoa passo)
1111
(itoa comp_ant)

0 commit comments

Comments
 (0)