Skip to content

Commit

Permalink
Use noninteractive' correctly in twittering-call-api'.
Browse files Browse the repository at this point in the history
* twittering-mode.el (twittering-call-api): use the argument
`noninteractive' correctly.
  • Loading branch information
cvmat committed Sep 3, 2010
1 parent b067037 commit c253e63
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions ChangeLog
Expand Up @@ -22,6 +22,9 @@
* twittering-mode.el (twittering-http-post): remove use of unbound
variable `noninteractive'.

* twittering-mode.el (twittering-call-api): use the argument
`noninteractive' correctly.

2010-08-25 Tadashi MATSUO <tad@mymail.twin.jp>

* twittering-mode.el: Confirm that a buffer associated with a
Expand Down
4 changes: 2 additions & 2 deletions twittering-mode.el
Expand Up @@ -454,7 +454,7 @@ StatusNet Service.")
(clean-up-sentinel (cdr (assq 'clean-up-sentinel args-alist))))
(twittering-http-get twittering-api-host
(twittering-api-path username "/lists")
t nil nil sentinel clean-up-sentinel)))
noninteractive nil nil sentinel clean-up-sentinel)))
((eq command 'create-friendships)
;; Create a friendship.
(let ((username (cdr (assq 'username args-alist))))
Expand Down Expand Up @@ -505,7 +505,7 @@ StatusNet Service.")
(clean-up-sentinel (cdr (assq 'clean-up-sentinel args-alist))))
(twittering-http-get twittering-api-host
(twittering-api-path "account/verify_credentials")
t nil nil
noninteractive nil nil
sentinel clean-up-sentinel)))
((eq command 'send-direct-message)
;; Send a direct message.
Expand Down

0 comments on commit c253e63

Please sign in to comment.