Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
That's a lisp function(defun fnInsertOnInsP (BlockName)
(if
(setq pt (getpoint "\nSpecify insertion point: "))
(command "_.-insert" (strcat "*" BlockName) "_NONE" pt "" "")
)
)
If i want to temporary ecclude it from .lsp fime i have to concvert it to comment
;(defun fnInsertOnInsP (BlockName)
;(if
;(setq pt (getpoint "\nSpecify insertion point: "))
;(command "_.-insert" (strcat "*" BlockName) "_NONE" pt "" "")
😉
😉
if pascal it's enough to convert it using
{
......
.....
}
or
(*
......
.....
*)
Is there a way like this in lisp???
Solved! Go to Solution.