diff options
author | shoshin <shoshin@cicadas.surf> | 2022-09-16 19:11:22 -0500 |
---|---|---|
committer | shoshin <shoshin@cicadas.surf> | 2022-09-16 19:11:22 -0500 |
commit | 88f8e0f139b0c0d81c834501dccde04a0032d55d (patch) | |
tree | f583e153c43bfbdaee79432d5aa30062b89c6c19 /shoshimacs.el | |
parent | 95abbccc36394b24e55c30f3d7a93c227b3d32f5 (diff) |
Clean: use fset instead of (setf (symbol-function ...))
Diffstat (limited to 'shoshimacs.el')
-rw-r--r-- | shoshimacs.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shoshimacs.el b/shoshimacs.el index bb72c6e..10d107f 100644 --- a/shoshimacs.el +++ b/shoshimacs.el @@ -195,7 +195,7 @@ (define-key flymake-mode-map (kbd "M-p") 'flymake-goto-prev-error)) ;;; Projects -(setf (symbol-function 'project-prefix-map) project-prefix-map) +(fset 'project-prefix-map project-prefix-map) (package-install 'magit) |