Fix naming convention

Signed-off-by: Rudi Grinberg <rudi.grinberg@gmail.com>
This commit is contained in:
Rudi Grinberg 2019-09-19 23:01:08 +09:00
parent 46c0ec0f11
commit 1ffaa699f8
2 changed files with 4 additions and 4 deletions

View file

@ -176,13 +176,13 @@ verbosity when editing a file in `doom-private-dir' or `doom-emacs-dir'."
")")))) ")"))))
;;;###autoload ;;;###autoload
(defun +emacs-lisp-edebug-instrument-defun-on () (defun +emacs-lisp/edebug-instrument-defun-on ()
"Toggle on instrumentalisation for the function under `defun'." "Toggle on instrumentalisation for the function under `defun'."
(interactive) (interactive)
(eval-defun 'edebugit)) (eval-defun 'edebugit))
;;;###autoload ;;;###autoload
(defun +emacs-lisp-edebug-instrument-defun-off () (defun +emacs-lisp/edebug-instrument-defun-off ()
"Toggle off instrumentalisation for the function under `defun'." "Toggle off instrumentalisation for the function under `defun'."
(interactive) (interactive)
(eval-defun nil)) (eval-defun nil))

View file

@ -79,8 +79,8 @@ This marks a foldable marker for `outline-minor-mode' in elisp buffers.")
:map emacs-lisp-mode-map :map emacs-lisp-mode-map
"e" #'macrostep-expand "e" #'macrostep-expand
(:prefix ("d" . "debug") (:prefix ("d" . "debug")
("f" #'+emacs-lisp-edebug-instrument-defun-on) ("f" #'+emacs-lisp/edebug-instrument-defun-on)
("F" #'+emacs-lisp-edebug-instrument-defun-off)))) ("F" #'+emacs-lisp/edebug-instrument-defun-off))))
;; ;;
;;; Packages ;;; Packages