Skip to content

Commit

Permalink
document
Browse files Browse the repository at this point in the history
  • Loading branch information
hayamiz committed Dec 3, 2009
1 parent aebab0c commit 6961cee
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 12 deletions.
7 changes: 6 additions & 1 deletion ChangeLog
@@ -1,4 +1,9 @@
2009-12-03 Tadashi MATSUO <tad@mymail.twin.jp>
2009-12-04 Yuto Hayamizu <y.hayamizu@gmail.com>

* twittering-mode.el (twittering-current-hashtag): docstring
(twittering-idle-time): removed (unused?)

2009-12-03 Tadasohi MATSUO <tad@mymail.twin.jp>

* twittering-mode.el (twittering-mode-map): define bindings so
as to be also valid even on non-window terminal.
Expand Down
31 changes: 20 additions & 11 deletions twittering-mode.el
Expand Up @@ -83,17 +83,26 @@ stored here. DO NOT SET VALUE MANUALLY.")
"*The number of tweets which will be retrieved in one request.
The upper limit is `twittering-max-number-of-tweets-on-retrieval'.")

(defvar twittering-current-hashtag nil)

(defvar twittering-idle-time 20)

(defvar twittering-timer-interval 90)

(defvar twittering-username nil)
(defvar twittering-username-active nil)

(defvar twittering-password nil)
(defvar twittering-password-active nil)
(defvar twittering-current-hashtag nil
"A hash tag string currently set. You can set it by calling
`twittering-set-current-hashtag'")

(defvar twittering-timer-interval 90
"The interval of auto reloading. You should use 60 or more
seconds for this variable because the number of API call is
limited by the hour.")

(defvar twittering-username nil
"An username of your Twitter account.")
(defvar twittering-username-active nil
"Copy of `twittering-username' for internal use.")

(defvar twittering-password nil
"A password of your Twitter account. Leave it blank is the
recommended way because writing a password in .emacs file is so
dangerous.")
(defvar twittering-password-active nil
"Copy of `twittering-password' for internal use.")

(defvar twittering-last-timeline-retrieved nil)
(defvar twittering-list-index-retrieved nil)
Expand Down

0 comments on commit 6961cee

Please sign in to comment.