diff options
| -rw-r--r-- | lisp/emacs-lisp/cl-macs.el | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el index 6d54066fe4e..121bd5eea3b 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el | |||
| @@ -2519,13 +2519,6 @@ omitted, a default message listing FORM itself is used." | |||
| 2519 | (list* 'list (list 'quote form) sargs)))) | 2519 | (list* 'list (list 'quote form) sargs)))) |
| 2520 | nil)))) | 2520 | nil)))) |
| 2521 | 2521 | ||
| 2522 | ;;;###autoload | ||
| 2523 | (defmacro ignore-errors (&rest body) | ||
| 2524 | "Execute BODY; if an error occurs, return nil. | ||
| 2525 | Otherwise, return result of last form in BODY." | ||
| 2526 | `(condition-case nil (progn ,@body) (error nil))) | ||
| 2527 | |||
| 2528 | |||
| 2529 | ;;; Compiler macros. | 2522 | ;;; Compiler macros. |
| 2530 | 2523 | ||
| 2531 | ;;;###autoload | 2524 | ;;;###autoload |