aboutsummaryrefslogtreecommitdiff
path: root/shoshimacs.el
diff options
context:
space:
mode:
authorshoshin <shoshin@cicadas.surf>2022-09-16 19:11:22 -0500
committershoshin <shoshin@cicadas.surf>2022-09-16 19:11:22 -0500
commit88f8e0f139b0c0d81c834501dccde04a0032d55d (patch)
treef583e153c43bfbdaee79432d5aa30062b89c6c19 /shoshimacs.el
parent95abbccc36394b24e55c30f3d7a93c227b3d32f5 (diff)
Clean: use fset instead of (setf (symbol-function ...))
Diffstat (limited to 'shoshimacs.el')
-rw-r--r--shoshimacs.el2
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)