Skip to content

Commit

Permalink
(twittering-get-tweets): rename from 'twittering-get-twits'.
Browse files Browse the repository at this point in the history
  • Loading branch information
yata committed Jan 21, 2010
1 parent 1d613fa commit a2beecd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Expand Up @@ -6,6 +6,11 @@
(twittering-ucs-to-char): Return `?' explicitly if `decode-char'
failed.

* twittering-mode.el (twittering-get-tweets): Rename from
`twittering-get-twits'.
(twittering-get-and-render-timeline): Adjust callers.
(twittering-new-tweets-hook): Fix a docstring.

2010-01-21 Tadashi MATSUO <tad@mymail.twin.jp>

* twittering-mode.el (twittering-render-timeline): reduce
Expand Down
6 changes: 3 additions & 3 deletions twittering-mode.el
Expand Up @@ -147,7 +147,7 @@ then you can use \"$to_me\" as
"Number of new tweets when `twittering-new-tweets-hook' is run")

(defvar twittering-new-tweets-hook nil
"Hook run when new twits are received.
"Hook run when new tweets are received.
You can read `twittering-new-tweets-count' to get the number of new
tweets received when this hook is run.")
Expand Down Expand Up @@ -2265,7 +2265,7 @@ variable `twittering-status-format'"
(concat "favorites/" method "/" id)
`(("source" . "twmode"))))

(defun twittering-get-twits (host method &optional noninteractive id)
(defun twittering-get-tweets (host method &optional noninteractive id)
(let ((buf (get-buffer twittering-buffer)))
(if (not buf)
(twittering-stop)
Expand Down Expand Up @@ -2323,7 +2323,7 @@ variable `twittering-status-format'"
(when pair
(let ((host (car pair))
(method (cadr pair)))
(twittering-get-twits host method noninteractive id))))
(twittering-get-tweets host method noninteractive id))))
(let ((type (car spec)))
(error "%s has not been supported yet" type)))))

Expand Down

0 comments on commit a2beecd

Please sign in to comment.