Skip to content

Commit c81dda0

Browse files
mattiasewsnyder
authored andcommitted
Fix some useless condition-case forms
Merge from Emacs master commit 68cc286c0495caaebc3f641f6b919109045c43dd
1 parent 5fe663d commit c81dda0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

verilog-mode.el

+2-1
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,8 @@ wherever possible, since it is slow."
370370
(unless (fboundp 'ignore-errors)
371371
(defmacro ignore-errors (&rest body)
372372
(declare (debug t) (indent 0))
373-
`(condition-case nil (progn ,@body) (error nil)))))
373+
`(condition-case nil (progn ,@body) (error nil))))
374+
(error nil))
374375
;; Added in Emacs 24.1
375376
(condition-case nil
376377
(unless (fboundp 'prog-mode)

0 commit comments

Comments
 (0)