How to unload a lisp app?

Discussion in 'AutoCAD' started by lsaapedd, Nov 3, 2004.

  1. lsaapedd

    lsaapedd Guest

    Far too many lisp applications, after being loaded, can not be unloaded. Why, and how can I unload one? I see no reason to leave it loaded and don't want to restart Autocad just to do so.
     
    lsaapedd, Nov 3, 2004
    #1
  2. lsaapedd

    OLD-CADaver Guest

    None for lisp of which I am aware,. Is there some overpowering need to unload it?
     
    OLD-CADaver, Nov 3, 2004
    #2
  3. lsaapedd

    lsaapedd Guest

    No. It just doesn't make sense to me that you can't do it. I don't like to leave stuff I'm not using loaded in memory.
     
    lsaapedd, Nov 3, 2004
    #3
  4. lsaapedd

    Tom Smith Guest

    Why do you think you need to do that? There is no unload capability as far
    as I know, but you could set the function nil if you insist.
     
    Tom Smith, Nov 3, 2004
    #4
  5. (setq C:APPNAME nil)

    Also, if there are applications starting up with AutoCAD that you don't
    need, then simply delete them from your APPLOAD startup suite.
     
    Daniel J. Altamura, R.A., Nov 3, 2004
    #5
  6. lsaapedd

    Tom Smith Guest

    No. It just doesn't make sense to me that you can't do it. I don't like
    to leave stuff I'm not using loaded in memory.

    IMHO, you need to get over that, or you'll spend your life obsessing over
    things you can't control :)

    You could use autoload instead of load to make an application available.
    This will guarantee that it isn't loaded at all unless and until it's
    actually used.
     
    Tom Smith, Nov 3, 2004
    #6
  7. lsaapedd

    lsaapedd Guest

    Thanks everyone.
     
    lsaapedd, Nov 3, 2004
    #7
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.