We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3ffbc1 commit d89a6d8Copy full SHA for d89a6d8
elisp/yatt-lint-any-mode.el
@@ -234,10 +234,10 @@ Currently only RHEL is supported."
234
(defun yatt-lint-any-lookup (bufname &optional registry)
235
(setq registry (or registry yatt-lint-any-registry))
236
(save-match-data
237
- (block loop
+ (cl-block loop
238
(while registry
239
(when (string-match (caar registry) bufname)
240
- (return-from loop (cdar registry)))
+ (cl-return-from loop (cdar registry)))
241
(setq registry (cdr registry))))))
242
243
(defun yatt-lint-any-run (handler buffer)
0 commit comments