Skip to content

Commit 7f34390

Browse files
committed
fix: swap-in #'cl-coerce for #'coerce
This change in response to: ``` error in process sentinel: Symbol’s function definition is void: coerce [2 times] ``` On my system `coerce` is not defined but `cl-coerce` is. system-info: "x86_64-apple-darwin18.7.0" emacs-version: "27.2"
1 parent 7524f98 commit 7f34390

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jiralib.el

+2-2
Original file line numberDiff line numberDiff line change
@@ -1128,13 +1128,13 @@ Auxiliary Notes:
11281128
(boundp 'unwrap-worklog-records-fn)
11291129
(functionp unwrap-worklog-records-fn))
11301130
unwrap-worklog-records-fn
1131-
(lambda (x) (coerce x 'list))))
1131+
(lambda (x) (cl-coerce x 'list))))
11321132
(setq rewrap-worklog-records-fn
11331133
(if (and
11341134
(boundp 'rewrap-worklog-records-fn)
11351135
(functionp rewrap-worklog-records-fn))
11361136
rewrap-worklog-records-fn
1137-
(lambda (x) (remove 'nil (coerce x 'vector)))))
1137+
(lambda (x) (remove 'nil (cl-coerce x 'vector)))))
11381138
(setq predicate-fn-lst
11391139
(if (and (boundp 'predicate-fn-lst)
11401140
(not (null predicate-fn-lst))

0 commit comments

Comments
 (0)