Skip to content

Commit

Permalink
Fixing checkdoc issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
chaosemer committed Feb 3, 2024
1 parent f768280 commit 9fdfd20
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
8 changes: 4 additions & 4 deletions 00.required-libraries.el
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@

;; Allow me to declaratively hook things, automatically removing the hook when redefined.
(defmacro hook-mode (hook &rest modes)
"Hook each member of MODES on HOOK. If the member is a symbol,
call (member 1); if it is a list, just execute it directly.
This allows you to declaratively hook in minor modes on a major mode."
"Hook each member of MODES on HOOK.
If the member is a symbol, call (member 1); if it is a list, just
execute it directly. This allows you to declaratively hook in
minor modes on a major mode."
(declare (indent 1))
(let ((body (cl-loop for expr in modes
if (and (symbolp expr) (fboundp expr))
Expand Down
3 changes: 3 additions & 0 deletions diff.el
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
;;; init/diff.el --- Diff mode customizations -*- lexical-binding: t; -*-

;;; Code:
;; no special code

;;; Kemaps:
;; VC should use EDiff, as it provides a better visualization.
Expand Down

0 comments on commit 9fdfd20

Please sign in to comment.