Skip to content

Commit

Permalink
pressing any key during running stops program
Browse files Browse the repository at this point in the history
  • Loading branch information
ghewgill committed Jan 12, 2013
1 parent 79382a0 commit df328ea
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions common/hp15c.js
Expand Up @@ -2908,6 +2908,11 @@ function key_down(k, override) {
//console.log("undefined decode: "+k);
return;
}
if (Running) {
clearTimeout(RunTimer);
Running = false;
return;
}
if (op !== null) {
try {
if (Prgm && op.info.programmable) {
Expand Down

0 comments on commit df328ea

Please sign in to comment.