From 7ba3dc16dd2b04c7b6c3aa848b306d8e1e693ae4 Mon Sep 17 00:00:00 2001
From: Bozhidar Batsov <bozhidar@tradeo.com>
Date: Wed, 3 Apr 2013 12:14:04 +0300
Subject: [PATCH] Address a warning

---
 core/prelude-core.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/core/prelude-core.el b/core/prelude-core.el
index 8a29967..b260657 100644
--- a/core/prelude-core.el
+++ b/core/prelude-core.el
@@ -81,9 +81,9 @@
 
 (defun prelude-smart-open-line-above ()
   "Insert an empty line above the current line.
-Position the cursor at it's beginning, according to the current mode"
+Position the cursor at it's beginning, according to the current mode."
   (interactive)
-  (previous-line)
+  (forward-line -1)
   (prelude-smart-open-line))
 
 (defun prelude-smart-open-line ()