From 211c8481335658c3f561d84c95967ac214915dc9 Mon Sep 17 00:00:00 2001 From: ueno Date: Tue, 3 Feb 2004 10:04:57 +0000 Subject: [PATCH] Fix the last change. --- rdfdb.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rdfdb.el b/rdfdb.el index b1a75ed..11df39d 100644 --- a/rdfdb.el +++ b/rdfdb.el @@ -378,10 +378,10 @@ MATCHER is a triple whose slots can be nil (wildcard)." (minimum-length-triples subject-property-triples) key) ;; Check whether triple is already in database. - (if (> minimum-length-triples + (if (> (length minimum-length-triples) (length property-object-triples)) (setq minimum-length-triples property-object-triples)) - (if (> minimum-length-triples + (if (> (length minimum-length-triples) (length object-subject-triples)) (setq minimum-length-triples object-subject-triples)) (unless (member triple minimum-length-triples) -- 1.7.10.4