Skip to content

Commit

Permalink
The properties for hashtags, mentions and URIs are non-sticky.
Browse files Browse the repository at this point in the history
* twittering-mode.el: The properties for hashtags, mentions and
URIs are non-sticky.
(twittering-make-fontified-tweet-text): make the properties
non-sticky for the both direction.
  • Loading branch information
cvmat committed Sep 3, 2011
1 parent ba5960a commit c7ca759
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
5 changes: 5 additions & 0 deletions ChangeLog
Expand Up @@ -2,6 +2,11 @@

* twittering-mode.el: Fix a comment.

* twittering-mode.el: The properties for hashtags, mentions and
URIs are non-sticky.
(twittering-make-fontified-tweet-text): make the properties
non-sticky for the both direction.

2011-08-27 Tadashi MATSUO <tad@mymail.twin.jp>

* twittering-mode.el: A list timeline includes native retweets.
Expand Down
5 changes: 4 additions & 1 deletion twittering-mode.el
Expand Up @@ -5992,7 +5992,10 @@ following symbols;
'face 'twittering-uri-face)))))
(beg (car range-and-properties))
(end (cadr range-and-properties))
(properties (cddr range-and-properties)))
(properties
`(,@(cddr range-and-properties)
front-sticky nil
rear-nonsticky t)))
(add-text-properties beg end properties str)
(setq pos end)))
str)))
Expand Down

0 comments on commit c7ca759

Please sign in to comment.