Skip to content

Commit 7ffc207

Browse files
committed
Fix a few variable references
1 parent 2ac5717 commit 7ffc207

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
### New Features
66

7-
* [#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.
7+
* [#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.
88
* Add new function `cider-load-all-files`, along with menu bar update.
99
* Add new customization variable `cider-special-mode-truncate-lines`.
1010
* Add an option `cider-inspector-fill-frame` to control whether the cider inspector window fills its frame.

cider-interaction.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1538,7 +1538,7 @@ Its behavior is controlled by `cider-save-files-on-cider-refresh'."
15381538
(when-let ((project-root (clojure-project-dir)))
15391539
(when cider-save-files-on-cider-refresh
15401540
(save-some-buffers
1541-
(eq cider-prompt-save-files-on-cider-refresh t)
1541+
(eq cider-save-files-on-cider-refresh t)
15421542
(lambda ()
15431543
(and
15441544
(derived-mode-p 'clojure-mode)

doc/miscellaneous_features.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ and
146146
```
147147

148148
* By default, all modified Clojure buffers are prompted to be saved. This
149-
behaviour can be customized using `cider-save-files-on-refresh`.
149+
behaviour can be customized using `cider-save-files-on-cider-refresh`.
150150

151151
## Tracing function execution
152152

0 commit comments

Comments
 (0)