summaryrefslogtreecommitdiffstats
path: root/lib.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2019-09-06 07:05:14 -0700
committerKaz Kylheku <kaz@kylheku.com>2019-09-06 07:05:14 -0700
commit73b98c7648c16583db4c59f24df5d3594c0b106a (patch)
treec06631547afe292e3c62fce0322d8145cb4e4987 /lib.c
parentaebdc3d7c22820d7604f2c424cbc179d7ebb34d1 (diff)
downloadtxr-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib.c b/lib.c
index f4810a44..cba770b2 100644
--- a/lib.c
+++ b/lib.c
@@ -254,7 +254,7 @@ val subtypep(val sub, val sup)
return nil;
}
- return eq(sub, sup);
+ return nil;
}
}