From c90b17c2033adcc34dbdd1b342018d6556756128 Mon Sep 17 00:00:00 2001 From: contrapunctus Date: Wed, 24 Nov 2021 08:40:03 +0530 Subject: [PATCH] Define group, correct keywords --- async-backup.el | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/async-backup.el b/async-backup.el index e1a2c66..1b6e155 100644 --- a/async-backup.el +++ b/async-backup.el @@ -1,8 +1,8 @@ -;;; async-backup.el --- Backup on each save, without freezing the interface +;;; async-backup.el --- Backup on each save without freezing Emacs ;; Author: contrapunctus ;; Maintainer: contrapunctus -;; Keywords: calendar +;; Keywords: files ;; Homepage: https://tildegit.org/contrapunctus/async-backup ;; Package-Requires: ((emacs "24.4")) ;; Version: 0.0.1 @@ -34,6 +34,10 @@ ;;; Code: (require 'cl-lib) +(defgroup async-backup nil + "Backup on each save without freezing Emacs." + :group 'files) + (defcustom async-backup-location (concat (locate-user-emacs-file "") "/async-backup") "Path to save backups to."