Next: with-condition-restarts, Previous: restart-case, Up: Conditions Dictionary
restart-name  restart ⇒  name
restart—a restart.
name—a symbol.
Returns the name of the restart, or nil if the restart is not named.
 (restart-case 
     (loop for restart in (compute-restarts)
               collect (restart-name restart))
   (case1 () :report "Return 1." 1)
   (nil   () :report "Return 2." 2)
   (case3 () :report "Return 3." 3)
   (case1 () :report "Return 4." 4))
⇒  (CASE1 NIL CASE3 CASE1 ABORT)
 ;; In the example above the restart named ABORT was not created
 ;; explicitly, but was implicitly supplied by the system.