The biggest thing I can think of is cross-platform support, and standardizing the language extensions they have made with ISO, etc.
The reason I use Pascal over C in general (besides its greater readability and dislike of having to deal with pointers for everything) is because it has a bigger standard library. That means I can write something once and compile it on multiple platforms. I have the speed and simplicity advantages of something like C, with the run-anywhere abilities of Java or C#. (yes, it has to be recompiled, but that's not such a big deal most of the time).
Turbo Pascal was taught in schools because it was a good implementation of an open language (Pascal). Borland briefly called the Delphi language ObjectPascal, but reverted to calling it "the Delphi language" in more recent versions, and so far as I know hasn't pushed to standardize it.
On the other hand, Delphi compatible compilers are available for many platforms, with the most prolific being FreePascal. In fact, FreePascal will run on PowerPC, Intel, and other processors, bringing its support close to C. The other half of cross-platform support is the GUI - which FreePascal is reasonably good at as well. Whereas Kylix required QT to be installed on Windows if you used CLX, Lazarus allows you to compile native to GTK, Win32, or even Mac OS GUI these days.
Although Delphi is a little more polished, I mainly use Lazarus these days for exactly the reasons listed above. In fact, if you want to write a GUI program that runs natively on Linux, Mac OS, and Windows - what other good options do you have? For individual programmers, I highly recommend looking into Lazarus. It's true that the debugger is still sub-par, but things have come a long way.
Delphi should catch up by taking the strengths of Microsoft's tools and using the tradeoffs made as weaknesses. Where Microsoft tools support only Windows, Delphi doesn't have to. Where Microsoft's tools support "managed code", Delphi's can generate native code. Microsoft can tightly integrate into their own codebase, whereas Delphi can offer better support for Open Standards.