Skip to content

Commit b36931d

Browse files
authored
fix(lib): doom-exec-process use doom-print--format
The doom--format function was removed in fe16de6. Amend: fe16de690418
1 parent 4c9df9b commit b36931d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lisp/lib/process.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Warning: freezes indefinitely on any stdin prompt."
3131
(set-process-filter
3232
process (lambda (_process output)
3333
(princ output (current-buffer))
34-
(princ (doom--format output))))
34+
(princ (doom-print--format output))))
3535
(set-process-sentinel
3636
process (lambda (process _event)
3737
(when (memq (process-status process) '(exit stop))

0 commit comments

Comments
 (0)