summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2017-05-25 12:55:13 +0300
committerBozhidar Batsov <bozhidar@batsov.com>2017-05-25 12:55:13 +0300
commit7ffc207cf0e56305963e1a3387dce3114325544d (patch)
treeb3c081c4729f2db391ab509f31850686a4bc1b9a
parent2ac571736d13ea8ae8bdc3d52fcc119397e7f65c (diff)
Fix a few variable references
-rw-r--r--CHANGELOG.md2
-rw-r--r--cider-interaction.el2
-rw-r--r--doc/miscellaneous_features.md2
3 files changed, 3 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d3e271e8..69b03d92 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,7 +4,7 @@
### New Features
-* [#1990](https://github.com/clojure-emacs/cider/issues/1990): Add new customation variable `cider-prompt-save-files-on-cider-refresh` to allow auto-saving buffers when `cider-refresh` is called.
+* [#1990](https://github.com/clojure-emacs/cider/issues/1990): Add new customation variable `cider-save-files-on-cider-refresh` to allow auto-saving buffers when `cider-refresh` is called.
* Add new function `cider-load-all-files`, along with menu bar update.
* Add new customization variable `cider-special-mode-truncate-lines`.
* Add an option `cider-inspector-fill-frame` to control whether the cider inspector window fills its frame.
diff --git a/cider-interaction.el b/cider-interaction.el
index 5abb62cf..8838f7b8 100644
--- a/cider-interaction.el
+++ b/cider-interaction.el
@@ -1538,7 +1538,7 @@ Its behavior is controlled by `cider-save-files-on-cider-refresh'."
(when-let ((project-root (clojure-project-dir)))
(when cider-save-files-on-cider-refresh
(save-some-buffers
- (eq cider-prompt-save-files-on-cider-refresh t)
+ (eq cider-save-files-on-cider-refresh t)
(lambda ()
(and
(derived-mode-p 'clojure-mode)
diff --git a/doc/miscellaneous_features.md b/doc/miscellaneous_features.md
index dc38cf01..36b00142 100644
--- a/doc/miscellaneous_features.md
+++ b/doc/miscellaneous_features.md
@@ -146,7 +146,7 @@ and
```
* By default, all modified Clojure buffers are prompted to be saved. This
- behaviour can be customized using `cider-save-files-on-refresh`.
+ behaviour can be customized using `cider-save-files-on-cider-refresh`.
## Tracing function execution