lisp command

Discussion in 'AutoCAD' started by George, Sep 11, 2004.

  1. George

    George Guest

    Hello,
    I have loaded this lisp program but cannot get it to start by typing fc on
    the command line, What am I doing wrong here?
    (defun c:FC ()
    (command "fillet""r""0"'fillet"))

    Thanks, George
     
    George, Sep 11, 2004
    #1
  2. George

    Walt Engle Guest

    You had an apostrophe instead of a quote. Try below:

    (defun c:FC ()
    (command "fillet" "r" "0" "fillet"))
     
    Walt Engle, Sep 11, 2004
    #2
Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments (here). After that, you can post your question and our members will help you out.