From: Tollef Fog Heen Date: Sun, 29 Jun 2008 08:25:46 +0000 (+0200) Subject: Stop using format to fix up the pretty print function, it is its own responsibility... X-Git-Tag: 0.1~24 X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6188551f87fbba678a64435157f80ed819c0d6d1;p=eweouz Stop using format to fix up the pretty print function, it is its own responsibility to not fuck up for others --- 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)