Common Lisp would sound like a miracle language if it wasn't real.
Can be configured to run almost as fast as C. Or dynamism that rivals Ruby and Python if you don't bother to specify types. An object system (and meta-object protocol) that rivals Smalltalk in sophistication. Full functional programming capabilities, and a syntax and libraries that favor that style. An entire sub-language for iteration that rivals Python's generation/comprehension facilities. The ability to be procedural when you really need to. Sophisticated built in data types. A facility for abstraction unrivaled by any other language that's not a Lisp.
The point is not necessarily that CL is the absolute best for every one of those points. But you can make a case for CL vs. another language based on that language's strong points, not its weak points.
Of course, don't get me started on the mess that is CL's community...
Lisp is really the best of both worlds. It's a nice looking language (easy to read and write; and good tools available), and I would use it even if it were slow. But unlike the other slow langauges (Perl), it can be made to run fast.
You might want to look at Nu (http://programming.nu). It's a new Lisp built on Objective-C, designed to make it extremely easy to call C or Objective-C libraries and frameworks (particularly Cocoa). It's a wonderful merger of Lisp, Objective-C, and Ruby.
If you are working in a language that has significant development advantages but mediocre performance, I think it is reasonable to look for ways to improve its performance.
Can be configured to run almost as fast as C. Or dynamism that rivals Ruby and Python if you don't bother to specify types. An object system (and meta-object protocol) that rivals Smalltalk in sophistication. Full functional programming capabilities, and a syntax and libraries that favor that style. An entire sub-language for iteration that rivals Python's generation/comprehension facilities. The ability to be procedural when you really need to. Sophisticated built in data types. A facility for abstraction unrivaled by any other language that's not a Lisp.
The point is not necessarily that CL is the absolute best for every one of those points. But you can make a case for CL vs. another language based on that language's strong points, not its weak points.
Of course, don't get me started on the mess that is CL's community...