diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2019-09-06 07:05:14 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2019-09-06 07:05:14 -0700 |
commit | 73b98c7648c16583db4c59f24df5d3594c0b106a (patch) | |
tree | c06631547afe292e3c62fce0322d8145cb4e4987 /lib.c | |
parent | aebdc3d7c22820d7604f2c424cbc179d7ebb34d1 (diff) | |
download | txr-73b98c7648c16583db4c59f24df5d3594c0b106a.tar.gz txr-73b98c7648c16583db4c59f24df5d3594c0b106a.tar.bz2 txr-73b98c7648c16583db4c59f24df5d3594c0b106a.zip |
subtypep: remove useless eq.
* lib.c (subtypep): The sub and sup parameters are compared
for equality early in the function; byt the time we get
here, we know they are not eq, so nil can be returned.
Diffstat (limited to 'lib.c')
-rw-r--r-- | lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -254,7 +254,7 @@ val subtypep(val sub, val sup) return nil; } - return eq(sub, sup); + return nil; } } |