Skip to content

Commit

Permalink
fix typo in twittering-tinyurl-get to resolve error "Symbol's value a…
Browse files Browse the repository at this point in the history
…s variable is void".
  • Loading branch information
yata committed Dec 25, 2009
1 parent 51d1153 commit 3b325d5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
@@ -1,3 +1,9 @@
2009-12-25 Satoshi Yatagawa <yata_github@y.hauN.org>

* twittering-mode.el (twittering-tinyurl-get): Fix typo to resolve
error "Symbol's value as variable is void". This problem was found
by naota.

2009-12-25 Yuto Hayamizu <y.hayamizu@gmail.com>

* twittering-mode.el (twittering-show-minibuffer-length): disabled
Expand Down
5 changes: 3 additions & 2 deletions twittering-mode.el
Expand Up @@ -1459,10 +1459,11 @@ If STATUS-DATUM is already in DATA-VAR, return nil. If not, return t."
twittering-tinyurl-services-map))))
(unless api
(error (concat
"invalid service try one of "
"`twittering-tinyurl-service' was invalid. try one of "
(mapconcat (lambda (x)
(symbol-name (car x)))
twittering-tinyurl-servies-map ", "))))
twittering-tinyurl-services-map ", ")
".")))
(if longurl
(save-excursion
(let ((buffer (url-retrieve-synchronously (concat api longurl))))
Expand Down

0 comments on commit 3b325d5

Please sign in to comment.