diff options
author | Sean Allred <code@seanallred.com> | 2014-11-20 21:24:19 -0600 |
---|---|---|
committer | Sean Allred <code@seanallred.com> | 2014-11-20 21:24:19 -0600 |
commit | 1dfd91e7373160854eeb85582598e6c8cc1b3561 (patch) | |
tree | c7050cf510f00ea005b76395ff07064ec04bbef0 /sx-networks.el | |
parent | 681319aeb250a83d982d1e3e02264a7af0ae4120 (diff) | |
parent | fd6b8111a13c042e5d0f2f3b689043c394c6e52d (diff) |
Merge pull request #77 from vermiculus/documentation
Documentation
Diffstat (limited to 'sx-networks.el')
-rw-r--r-- | sx-networks.el | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/sx-networks.el b/sx-networks.el index 755d62c..6820e11 100644 --- a/sx-networks.el +++ b/sx-networks.el @@ -19,8 +19,6 @@ ;;; Commentary: -;; - ;;; Code: (require 'sx-method) @@ -54,7 +52,6 @@ (defun sx-network--get-associated () "Retrieve cached information for network user. - If cache is not available, retrieve current data." (or (and (setq sx-network--user-information (sx-cache-get 'network-user) sx-network--user-sites @@ -63,7 +60,6 @@ If cache is not available, retrieve current data." (defun sx-network--update () "Update user information. - Sets cache and then uses `sx-network--get-associated' to update the variables." (sx-cache-set 'network-user @@ -75,7 +71,6 @@ the variables." (defun sx-network--initialize () "Ensure network-user cache is available. - Added as hook to initialization." ;; Cache was not retrieved, retrieve it. (sx-network--get-associated)) @@ -83,7 +78,6 @@ Added as hook to initialization." (defun sx-network--map-site-url-to-site-api () "Convert `me/associations' to a set of `api_site_parameter's. - `me/associations' does not return `api_site_parameter' so cannot be directly used to retrieve content per site. This creates a list of sites the user is active on." |