Created
June 15, 2011 09:10
-
-
Save mrvdb/1026767 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/identica-mode.el b/identica-mode.el | |
index 455c493..f5f6fb8 100644 | |
--- a/identica-mode.el | |
+++ b/identica-mode.el | |
@@ -284,9 +284,6 @@ ur1ca, tighturl, tinyurl, toly, google and isgd" | |
(defvar identica-timeline-data nil) | |
(defvar identica-timeline-last-update nil) | |
-(defvar identica-entry-spacing 2 | |
- "The number of spaces to insert between entries.") | |
- | |
(defcustom identica-enable-striping nil | |
"If non-nil, set the background of every second entry to the background | |
of identica-stripe-face." | |
@@ -791,8 +788,7 @@ we are interested in." | |
(when wrapped (funcall wrapped -1)) | |
(mapc (lambda (status) | |
(insert (identica-format-status | |
- status identica-status-format) | |
- (make-string identica-entry-spacing ?\n)) | |
+ status identica-status-format)) | |
(if (not wrapped) | |
(progn | |
(fill-region-as-paragraph |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment