We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e65249 commit 7cdfa4eCopy full SHA for 7cdfa4e
clang/tools/clang-format/clang-format.el
@@ -360,10 +360,10 @@ file. If no ASSUME-FILE-NAME is given uses the function
360
style
361
assume-file-name
362
diff-lines))))
363
- (ignore-errors
+ (progn
364
;; Cleanup temporary files we created.
365
- (when tmpfile-vc-head (delete-file tmpfile-vc-head))
366
- (when tmpfile-curbuf (delete-file tmpfile-curbuf))))))
+ (when tmpfile-vc-head (ignore-errors (delete-file tmpfile-vc-head)))
+ (when tmpfile-curbuf (ignore-errors (delete-file tmpfile-curbuf)))))))
367
368
369
;;;###autoload
0 commit comments