Skip to content

Commit

Permalink
Fix an incorrect index on filling text for the specifier "%t".
Browse files Browse the repository at this point in the history
* twittering-mode.el (twittering-format-status): fix an incorrect
index on filling text for the specifier "%t".
  • Loading branch information
cvmat committed Jan 26, 2010
1 parent 5f090e6 commit 0cc5c85
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions ChangeLog
Expand Up @@ -31,6 +31,9 @@
multiple windows displaying `*twittering*' buffer.
Thanks to Naohiro Aota.

* twittering-mode.el (twittering-format-status): fix an incorrect
index on filling text for the specifier "%t".

2010-01-22 Satoshi Yatagawa <yata_github@y.hauN.org>

* twittering-mode.el (twittering-initial-timeline-spec-string):
Expand Down
2 changes: 1 addition & 1 deletion twittering-mode.el
Expand Up @@ -2176,7 +2176,7 @@ variable `twittering-status-format'"
replace-prefix table))
(text (concat prefix (attr 'text) postfix)))
(substring (twittering-fill-string text)
(1+ (length prefix)))))
(length prefix))))
))
("u" . ,(attr 'user-url))
))
Expand Down

0 comments on commit 0cc5c85

Please sign in to comment.