aboutsummaryrefslogtreecommitdiff
path: root/stack-core.el
diff options
context:
space:
mode:
authorSean Allred <code@seanallred.com>2014-11-06 07:33:35 -0500
committerSean Allred <code@seanallred.com>2014-11-06 07:33:35 -0500
commitccb2f03dd57e4535c6151b72fc439b23acf1b643 (patch)
tree10d2deb58017c187d4bea7890516f9a0db1336b1 /stack-core.el
parentd56a1bb19c672d093cdb631591dcba5e977561f6 (diff)
Change constant to variable
As it is let-bound in the authentication flow, it is not truly a constant. Add a warning to the documentation appropriately.
Diffstat (limited to 'stack-core.el')
-rw-r--r--stack-core.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/stack-core.el b/stack-core.el
index 585cc73..6c5e7fa 100644
--- a/stack-core.el
+++ b/stack-core.el
@@ -57,9 +57,11 @@
(format "http://api.stackexchange.com/%s/" stack-core-api-version)
"The base URL to make requests from.")
-(defconst stack-core-api-batch-request-separator
+(defvar stack-core-api-batch-request-separator
";"
- "The separator character to use when making batch requests.")
+ "The separator character to use when making batch requests.
+
+Do not change this unless you know what you are doing!")
(defcustom stack-core-default-keyword-arguments-alist
'(("filters/create")