Skip to content

Commit

Permalink
'twittering-http-get-list-index-sentinel()' is fixed.
Browse files Browse the repository at this point in the history
The function caused an error because of the lacked binding of
'indexes'.
  • Loading branch information
cvmat committed Nov 29, 2009
1 parent d1ba315 commit 6e9acde
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion twittering-mode.el
Expand Up @@ -567,7 +567,8 @@ directory. You should change through function'twittering-icon-mode'")
(let ((header (twittering-get-response-header temp-buffer)))
(if (not (string-match "HTTP/1\.[01] \\([a-z0-9 ]+\\)\r?\n" header))
(setq twittering-list-index-retrieved "Failure: Bad http response.")
(let ((status (match-string-no-properties 1 header)))
(let ((status (match-string-no-properties 1 header))
(indexes nil))
(if (not (string-match "\r?\nLast-Modified: " header))
(setq twittering-list-index-retrieved
(concat status ", but no contents."))
Expand Down

0 comments on commit 6e9acde

Please sign in to comment.