From 1370892fd2084a8d4f57f7f0bff6c49570f15914 Mon Sep 17 00:00:00 2001 From: Tollef Fog Heen Date: Fri, 1 Aug 2008 13:05:50 +0200 Subject: [PATCH] Fix syntax error --- lisp/eweouz.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/eweouz.el b/lisp/eweouz.el index 216f569..5b1d1ae 100644 --- a/lisp/eweouz.el +++ b/lisp/eweouz.el @@ -64,11 +64,11 @@ (message (format "%d" (length match-recs))) (cond ((= 0 (length match-recs)) (message "No matching records")) - ((= 1 (length match-recs) + ((= 1 (length match-recs)) ; Just one match; insert it (progn (delete-region beg end) - (insert (vcard-format-sample-get-name (car match-recs)))))) + (insert (vcard-format-sample-get-name (car match-recs))))) ((< 1 (length match-recs)) ;; For now, just display the records and leave the user to ;; complete -- 2.39.5