Skip to content

Commit

Permalink
Create terminal processes asynchronously
Browse files Browse the repository at this point in the history
  • Loading branch information
CyberShadow committed Nov 10, 2017
1 parent f2b54c9 commit b3034a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion term-keys-urxvt.el
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ The returned string is suitable to be added as-is to an
"Launch Emacs via urxvt enhanced with term-keys.
This function is used for testing and as an example."
(apply #'call-process "urxvt" nil nil nil
(apply #'start-process "urxvt" nil "urxvt"
(append
(term-keys/urxvt-args)
(list
Expand Down
2 changes: 1 addition & 1 deletion term-keys-xterm.el
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ executable file and used for launching xterm."
"Launch Emacs via xterm enhanced with term-keys.
This function is used for testing and as an example."
(apply #'call-process "xterm" nil nil nil
(apply #'start-process "xterm" nil "xterm"
(append
(term-keys/xterm-args)
(list
Expand Down

0 comments on commit b3034a2

Please sign in to comment.