Skip to content

Commit

Permalink
fix lips executable in GNU Emacs run-scheme
Browse files Browse the repository at this point in the history
  • Loading branch information
jcubic committed Apr 19, 2020
1 parent 8028211 commit 67a3fe4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
* fix display of function/macro docs (remove white space in parser)
* fix loading modules with `require`
* fix macro expand when expansion return list with macro that is data
* fix lips executable in GNU Emacs run-scheme (comint mode)

## 0.20.1
### Bug fixes
Expand Down
2 changes: 1 addition & 1 deletion bin/lips.js
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ if (options.version || options.V) {
input: process.stdin,
output: process.stdout,
prompt: prompt,
terminal: !!process.stdin.isTTY
terminal: !!process.stdin.isTTY && !(process.env.EMACS || process.env.INSIDE_EMACS)
});
if (process.stdin.isTTY) {
rl.prompt();
Expand Down

0 comments on commit 67a3fe4

Please sign in to comment.