Remove deprecated set! & def-setting! macros

This commit is contained in:
Henrik Lissner 2019-01-05 17:48:46 -05:00
parent 9f249de569
commit b56639e31b
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
17 changed files with 0 additions and 170 deletions

View file

@ -20,12 +20,6 @@ command that will be called interactively."
(dolist (mode (doom-enlist modes))
(setf (alist-get mode +eval-repls) command)))
;; FIXME obsolete :repl
;;;###autoload
(def-setting! :repl (mode command)
:obsolete set-repl-handler!
`(set-repl-handler! ,mode ,command))
;;
;; Evaluation
@ -62,9 +56,3 @@ command that will be called interactively."
(or (cdr (assq mode quickrun--major-mode-alist))
(string-remove-suffix "-mode" (symbol-name mode)))
command :mode mode)))))
;; FIXME obsolete :eval
;;;###autoload
(def-setting! :eval (mode command)
:obsolete set-eval-handler!
`(set-eval-handler! ,mode ,command))