Skip to content

Commit

Permalink
Fix autoload cookies (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
leungbk authored Jan 29, 2024
1 parent 89b3e1a commit 8b4be66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions blamer.el
Original file line number Diff line number Diff line change
Expand Up @@ -1151,7 +1151,7 @@ will appear after BLAMER-IDLE-TIME. It works only inside git repo"
(add-hook 'post-command-hook #'blamer--try-render nil t)
(add-hook 'window-state-change-hook #'blamer--try-render nil t))))

;;###autoload
;;;###autoload
(defun blamer-kill-ring-commit-hash ()
"Copy to kill-ring the current line's blame commit hash."
(interactive)
Expand All @@ -1166,7 +1166,7 @@ will appear after BLAMER-IDLE-TIME. It works only inside git repo"
(when (string-match "^\\([[:xdigit:]]+\\) " info)
(kill-new (match-string 1 info))))))))

;;###autoload
;;;###autoload
(defun blamer-show-commit-info (&optional type)
"Show commit info from git blame.
Expand Down

0 comments on commit 8b4be66

Please sign in to comment.