mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-21 13:53:38 -05:00
refactor: rename orig-fn arg in advice to fn
A minor tweak to our naming conventions for the first argument of an :around advice.
This commit is contained in:
@@ -577,8 +577,8 @@ This be hooked to `projectile-after-switch-project-hook'."
|
||||
;;; Advice
|
||||
|
||||
;;;###autoload
|
||||
(defun +workspaces-autosave-real-buffers-a (orig-fn &rest args)
|
||||
(defun +workspaces-autosave-real-buffers-a (fn &rest args)
|
||||
"Don't autosave if no real buffers are open."
|
||||
(when (doom-real-buffer-list)
|
||||
(apply orig-fn args))
|
||||
(apply fn args))
|
||||
t)
|
||||
|
Reference in New Issue
Block a user