From 9fdfd2033e92284d0414c0236c7b629b65695f45 Mon Sep 17 00:00:00 2001 From: Jared Finder Date: Fri, 2 Feb 2024 19:21:04 -0800 Subject: [PATCH] Fixing checkdoc issues. --- 00.required-libraries.el | 8 ++++---- diff.el | 3 +++ 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/00.required-libraries.el b/00.required-libraries.el index 81eeba2..394d368 100644 --- a/00.required-libraries.el +++ b/00.required-libraries.el @@ -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)) diff --git a/diff.el b/diff.el index f2df7e9..17eea6a 100644 --- a/diff.el +++ b/diff.el @@ -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.