diff options
author | Pedro Silva <psilva+git@pedrosilva.pt> | 2013-04-09 18:49:38 +0100 |
---|---|---|
committer | Pedro Silva <psilva+git@pedrosilva.pt> | 2013-04-09 18:49:38 +0100 |
commit | 33c1ab62932ffc4e79b77e4c96896c04b22e9db3 (patch) | |
tree | 84178afc9b9559a9df048dafa05a93e4dc345650 | |
parent | 3b1e34518294a1fa6fa29355fd4e141f3fcaf3b6 (diff) |
Fix bug introduced by missing renaming ttrss-session-id to ttrss-sid in some places
-rw-r--r-- | ttrss.el | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -86,7 +86,7 @@ ;; * Interactive versions of the methods employing global state: ;; You'll note that there are, in fact, a number of variables defined ;; at the top-level, namely 'ttrss-address', 'ttrss-user', -;; 'ttrss-password', 'ttrss-session-id', 'ttrss-api-level', and +;; 'ttrss-password', 'ttrss-sid', 'ttrss-api-level', and ;; 'ttrss-server-version'. These are defined in anticipation of the ;; next release, in which I plan to introduce interactive counterparts ;; of most methods that do employ global state. @@ -131,7 +131,7 @@ :type 'string :group 'ttrss) -(defvar ttrss-session-id nil +(defvar ttrss-sid nil "Current session id, if any, set after successful login.") (defvar ttrss-api-level nil |