diff options
author | Steven Allen <steven@stebalien.com> | 2024-02-24 11:50:00 -0800 |
---|---|---|
committer | Vasilij Schneidermann <mail@vasilij.de> | 2024-04-07 14:19:59 +0200 |
commit | 9b7bef950d68c2518710c480729d6bb6026e9489 (patch) | |
tree | 514798f72260b4fa46ce355e49637031277c47e6 /nov.el | |
parent | a3643334c1edef2f938d60d146744e0b31f2357b (diff) |
Fix custom type for nov-unzip-args
Diffstat (limited to 'nov.el')
-rw-r--r-- | nov.el | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -78,7 +78,9 @@ This variable expects a list of strings, except for `directory' and `filename' symbols, which will be replaced accordingly when opening an EPUB file." - :type 'list + :type '(repeat (choice (string :tag "Argument") + (const :tag "Directory" directory) + (const :tag "Filename" filename))) :group 'nov) (defcustom nov-variable-pitch t |