diff options
author | B. Watson <urchlay@slackware.uk> | 2024-01-04 17:04:27 -0500 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2024-01-04 17:04:27 -0500 |
commit | 9efdae5fa5242e151a2e1a1dd24bc48081b28ec2 (patch) | |
tree | ab3fc388758e21279bb124335db1381dae9eb250 | |
parent | f81a4deb016966f724b3735a5db37ba732d445a8 (diff) | |
download | hcalc-9efdae5fa5242e151a2e1a1dd24bc48081b28ec2.tar.gz |
Make Enter *really* do the same as = key.
-rw-r--r-- | input.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -378,6 +378,7 @@ key(char c) case 13: case 10: end_number(); + pending_op = '='; break; case '~': /* Invert bits (one's complement) */ |