如何选择一个au
我想通过在以下代码中按enter键来实现插入选项:(defun c:mak521 ()
(if (/= (tblsearch "block" "521")
nil)
(progn
(beep)
(initget 1 "Yes No
INsert")
(prompt "\n521 has already been
created.")
(setq x (getkword
"\nInsert 521 at 0,0 or redefine it? <INsert>:
"))
(cond
((= x "Yes")
(mak521))
((= x "No")
(exit))
((= x "INsert") (ins521))
我该怎么做? 请参阅我的教程:
http://lee-mac.com/promptwithdefault.html 谢谢我想我可以从你的教程中找到答案。
页:
[1]