branch: externals/calibre
commit dc4b5f79acb6f2beab9c3a1988c3c7438baad738
Author: Kjartan Óli Ágústsson <[email protected]>
Commit: Kjartan Óli Ágústsson <[email protected]>
Add commentary
* calibre-db.el:
* calibre-book.el:
* calibre-library.el: Added commentary section
---
calibre-book.el | 4 +++-
calibre-db.el | 2 ++
calibre-library.el | 4 ++++
3 files changed, 9 insertions(+), 1 deletion(-)
diff --git a/calibre-book.el b/calibre-book.el
index 18ff8ef813..8d01a5722f 100644
--- a/calibre-book.el
+++ b/calibre-book.el
@@ -1,4 +1,4 @@
-;;; calibre-book.el --- Create and manage lisp representations of books -*-
lexical-binding:t -*-
+;;; calibre-book.el --- Create and manage Lisp representations of books -*-
lexical-binding:t -*-
;; Copyright (C) 2023 Kjartan Oli Agustsson
@@ -21,6 +21,8 @@
;; along with calibre.el. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
+;; Functions for creating and accessing the values of Lisp
+;; representations of books
;;; Code:
(require 'eieio)
diff --git a/calibre-db.el b/calibre-db.el
index 25df7a9f78..0b41d0ee93 100644
--- a/calibre-db.el
+++ b/calibre-db.el
@@ -20,6 +20,8 @@
;; You should have received a copy of the GNU General Public License
;; along with calibre.el. If not, see <http://www.gnu.org/licenses/>.
+;;; Commentary:
+;; Fetch data from the library database.
;;; Code:
(defvar calibre--db nil)
diff --git a/calibre-library.el b/calibre-library.el
index 890c96aaf3..0e4b7b54b6 100644
--- a/calibre-library.el
+++ b/calibre-library.el
@@ -18,6 +18,10 @@
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
+;;; Commentary:
+;; View the contents of a Library, add new books, remove books, and
+;; open books in Emacs.
+
;;; Code:
(require 'calibre-book)