Skip to content

Commit

Permalink
Check `twittering-timer-for-redisplaying' before setting timer.
Browse files Browse the repository at this point in the history
* twittering-mode.el (twittering-start): check the value of
`twittering-timer-for-redisplaying' before setting timer.
  • Loading branch information
cvmat committed Apr 3, 2010
1 parent f80d8e8 commit a50d778
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions ChangeLog
Expand Up @@ -3,6 +3,9 @@
* twittering-mode.el (twittering-buffer-active-p): renamed
`twittering-buffer-related-p'.

* twittering-mode.el (twittering-start): check the value of
`twittering-timer-for-redisplaying' before setting timer.

2010-03-30 Tadashi MATSUO <tad@mymail.twin.jp>

* twittering-mode.el (twittering-get-response-header): return nil
Expand Down
6 changes: 3 additions & 3 deletions twittering-mode.el
Expand Up @@ -3499,12 +3499,12 @@ variable `twittering-status-format'."
(interactive)
(if (null action)
(setq action #'twittering-current-timeline-noninteractive))
(if twittering-timer
nil
(unless twittering-timer
(setq twittering-timer
(run-at-time "0 sec"
twittering-timer-interval
#'twittering-timer-action action))
#'twittering-timer-action action)))
(unless twittering-timer-for-redisplaying
(setq twittering-timer-for-redisplaying
(run-at-time "0 sec"
twittering-timer-interval-for-redisplaying
Expand Down

0 comments on commit a50d778

Please sign in to comment.