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.