From a12ee25eab8d8db5573573fa10d12feac6577ca1 Mon Sep 17 00:00:00 2001 From: Satoshi Yatagawa Date: Wed, 13 Jan 2010 12:28:42 +0900 Subject: [PATCH] (twittering-render-timeline): set the 'fill-column' locally. --- ChangeLog | 6 ++++++ twittering-mode.el | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 49e19633..131d17fb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -859,10 +859,16 @@ from twittering-get-count if existing. 2009-11-06 Naohiro Aota + * twittering-mode.el (twittering-image-type): Support bitmap type using `convert'. (twittering-convert-program): New varibale. +2009-11-05 Satoshi Yatagawa + + * twittering-mode.el (twittering-render-timeline): Set the + `fill-column' locally. + 2009-09-01 Alberto Garcia * twittering-mode.el (twittering-retweet): diff --git a/twittering-mode.el b/twittering-mode.el index 0f86e353..6a448fcb 100644 --- a/twittering-mode.el +++ b/twittering-mode.el @@ -1616,7 +1616,8 @@ If STATUS-DATUM is already in DATA-VAR, return nil. If not, return t." (defun twittering-render-timeline () (with-current-buffer (twittering-buffer) (let ((point (point)) - (end (point-max))) + (end (point-max)) + (fill-column (- (window-width) 4))) (twittering-update-mode-line) (setq buffer-read-only nil) (erase-buffer)