From 6188551f87fbba678a64435157f80ed819c0d6d1 Mon Sep 17 00:00:00 2001 From: Tollef Fog Heen Date: Sun, 29 Jun 2008 10:25:46 +0200 Subject: [PATCH] Stop using format to fix up the pretty print function, it is its own responsibility to not fuck up for others --- lisp/eweouz.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lisp/eweouz.el b/lisp/eweouz.el index f5e5a99..a61c6f0 100644 --- a/lisp/eweouz.el +++ b/lisp/eweouz.el @@ -50,4 +50,6 @@ "Display an entry in the current buffer" (save-excursion (set-buffer (get-buffer-create eweouz-buffer-name)) - (insert (format "%s\n" (vcard-pretty-print record))))) + (insert (vcard-pretty-print record)))) + +(require 'vcard) -- 2.39.5