LISP routine
A self-contained AutoLISP program that adds a command or behaviour to AutoCAD — usually one .lsp/.fas file.
'LISP routine' is the everyday name CAD pros use for a single, packaged AutoLISP utility. It's typically one .lsp or .fas file that defines one or more (defun C:CMDNAME …) functions — the C: prefix makes them callable as AutoCAD commands. A routine might draw a custom rebar callout, batch-rename layers, or export a parts list. Marketplaces like CAD Exchange list thousands of LISP routines because they're the fastest unit of automation to publish and consume.
Related guides
Browse related listings
Related terms
A scripting language used to automate AutoCAD by writing routines that issue commands, query drawings, and build custom tools.
Autodesk's dialect of LISP, built into AutoCAD since 1986, used to write custom commands and automate drawings.
A compiled, single-file binary of an AutoLISP/Visual LISP routine. Faster to load and obscures the source code.