diff options
Diffstat (limited to '')
| -rw-r--r-- | test/lisp/vc/vc-tests/vc-tests.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lisp/vc/vc-tests/vc-tests.el b/test/lisp/vc/vc-tests/vc-tests.el index 737ee09415e..a64bee00de2 100644 --- a/test/lisp/vc/vc-tests/vc-tests.el +++ b/test/lisp/vc/vc-tests/vc-tests.el | |||
| @@ -236,7 +236,7 @@ For backends which don't support it, `vc-not-supported' is signaled." | |||
| 236 | (defmacro vc-test--run-maybe-unsupported-function (func &rest args) | 236 | (defmacro vc-test--run-maybe-unsupported-function (func &rest args) |
| 237 | "Run FUNC with ARGS as arguments. | 237 | "Run FUNC with ARGS as arguments. |
| 238 | Catch the `vc-not-supported' error." | 238 | Catch the `vc-not-supported' error." |
| 239 | `(condition-case err | 239 | `(condition-case nil |
| 240 | (funcall ,func ,@args) | 240 | (funcall ,func ,@args) |
| 241 | (vc-not-supported 'vc-not-supported))) | 241 | (vc-not-supported 'vc-not-supported))) |
| 242 | 242 | ||