Skip to content

Commit

Permalink
(twittering-http-get-list-index-sentinel): fix a reference to 'mes' a…
Browse files Browse the repository at this point in the history
…s a variable, not as a function.
  • Loading branch information
yata committed Jan 23, 2010
1 parent 43abf82 commit de19e8f
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 @@ -10,6 +10,9 @@
* twittering-mode.el (twittering-status-to-status-datum): Don't
refer to `twittering-use-native-retweet'.

* twittering-mode.el (twittering-http-get-list-index-sentinel):
Fix a reference to `mes' as a variable, not as a function.

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

* twittering-mode.el: Add a fail statement to work again under
Expand Down
2 changes: 1 addition & 1 deletion twittering-mode.el
Expand Up @@ -1511,7 +1511,7 @@ Available keywords:
(while (re-search-forward
"<slug>\\([-a-zA-Z0-9_]+\\)</slug>" nil t)
(push (match-string 1) indexes))))))
(t (mes (format "Response: %s" status-line)))))
(t (setq mes (format "Response: %s" status-line)))))
(setq mes "Failure: Bad http response."))
(if indexes
(setq twittering-list-index-retrieved indexes)
Expand Down

0 comments on commit de19e8f

Please sign in to comment.