diff options
author | Pedro Silva <psilva+git@pedrosilva.pt> | 2013-04-03 00:41:51 +0100 |
---|---|---|
committer | Pedro Silva <psilva+git@pedrosilva.pt> | 2013-04-03 00:41:51 +0100 |
commit | c6b84e1338bd92f6dc527015fc3313f85fe68684 (patch) | |
tree | 7b4ba1f3f19e64dc379b456f9b1214f429b98106 | |
parent | 5b9cc1719d00adfe0f32a6401f871219891ef0fe (diff) |
Fix indentation problem putting nnttrss-logged-in-p nested within previous defun
-rw-r--r-- | nnttrss.el | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -93,15 +93,15 @@ credentials. Returns a session id string or nil." (nnttrss-post-request address :status :op "logout" - :sid session-id) + :sid session-id)) - (defun nnttrss-logged-in-p (address session-id) - "Return t if there is a valid session at ADDRESS with +(defun nnttrss-logged-in-p (address session-id) + "Return t if there is a valid session at ADDRESS with SESSION-ID, false otherwise." - (nnttrss-post-request address - :status - :op "isLoggedIn" - :sid session-id))) + (nnttrss-post-request address + :status + :op "isLoggedIn" + :sid session-id)) (defun nnttrss-api-level (address session-id) "Return an integer corresponding to the API level at ADDRESS |