From 155737c85d5afd3d1e518e4da9034c78eec939f8 Mon Sep 17 00:00:00 2001
From: Dillon Kearns <dillon@dillonkearns.com>
Date: Thu, 3 Oct 2013 08:00:23 -0700
Subject: [PATCH] Pass prelude-kill-whole-line input as number ("p")

---
 core/prelude-core.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/prelude-core.el b/core/prelude-core.el
index bd88d1d..cce55f2 100644
--- a/core/prelude-core.el
+++ b/core/prelude-core.el
@@ -126,7 +126,7 @@ With a prefix ARG open line above the current line."
 (defun prelude-kill-whole-line (&optional arg)
   "A simple wrapper around command `kill-whole-line' that respects indentation.
 Passes ARG to command `kill-whole-line' when provided."
-  (interactive "P")
+  (interactive "p")
   (kill-whole-line arg)
   (back-to-indentation))