branch: elpa/inf-clojure commit 3e2274725fdc22ee77c0fd5ec3500bd963cab404 Author: Bozhidar Batsov <bozhi...@batsov.com> Commit: Bozhidar Batsov <bozhi...@batsov.com>
Use setq-local --- inf-clojure.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inf-clojure.el b/inf-clojure.el index d5c927d..13bfeb4 100644 --- a/inf-clojure.el +++ b/inf-clojure.el @@ -271,7 +271,7 @@ to continue it." (inf-clojure-eldoc-setup) (setq comint-get-old-input #'inf-clojure-get-old-input) (setq comint-input-filter #'inf-clojure-input-filter) - (set (make-local-variable 'comint-prompt-read-only) inf-clojure-prompt-read-only) + (setq-local comint-prompt-read-only inf-clojure-prompt-read-only) (add-hook 'comint-preoutput-filter-functions #'inf-clojure-preoutput-filter nil t) (add-hook 'completion-at-point-functions #'inf-clojure-completion-at-point nil t))