;;; Time-stamp: <2000-12-06 11:20:14 jcgs> (defun enable-all-commands () "Enable all commands, reporting on which were disabled." (interactive) (with-output-to-temp-buffer "*Commands that were disabled*" (mapatoms (function (lambda (symbol) (when (get symbol 'disabled) (put symbol 'disabled nil) (prin1 symbol) (princ "\n"))))))) (enable-all-commands)