aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2012-08-02 22:24:11 +0200
committerGravatar Tom Willemsen2012-08-02 22:24:11 +0200
commit205178fa07c1bfd7ff1f4971c1b4de65bf849a90 (patch)
tree45e849231a3a3ed86a869b0ce0a13b9db50280e2
parent5e9acf6f30accb492233c159c5feeebcf0bcae3c (diff)
downloadavandu-205178fa07c1bfd7ff1f4971c1b4de65bf849a90.tar.gz
avandu-205178fa07c1bfd7ff1f4971c1b4de65bf849a90.zip
Use defcustom for avandu-tt-rss-api-url
* avandu.el: Change `avandu-tt-rss-api-url' from a `defvar' to a `defcustom' to make it easier for users to change.
-rw-r--r--avandu.el10
1 files changed, 6 insertions, 4 deletions
diff --git a/avandu.el b/avandu.el
index 4b76de0..175a850 100644
--- a/avandu.el
+++ b/avandu.el
@@ -86,13 +86,15 @@
"Face for article excerpts in avandu overview."
:group 'avandu)
+(defcustom avandu-tt-rss-api-url nil
+ "URL of your Tiny Tiny RSS instance. For example:
+ http://tt-rss.org/demo/api/"
+ :group 'avandu
+ :type 'string)
+
(defvar avandu--session-id nil
"*internal* Session id for avandu.")
-(defvar avandu-tt-rss-api-url nil
- "URL of your Tiny Tiny RSS instance. For example:
- http://tt-rss.org/demo/api/")
-
(defvar avandu-user nil
"Username of your Tiny Tiny RSS account.")