diff options
Diffstat (limited to 'lisp/jka-compr.el')
-rw-r--r-- | lisp/jka-compr.el | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lisp/jka-compr.el b/lisp/jka-compr.el index 59c6de846c2..5bda4349288 100644 --- a/lisp/jka-compr.el +++ b/lisp/jka-compr.el @@ -198,12 +198,16 @@ invoked." (choice :tag "Compress Message" (string :format "%v") (const :tag "No Message" nil)) - (string :tag "Compress Program") + (choice :tag "Compress Program" + (string) + (const :tag "None" nil)) (repeat :tag "Compress Arguments" string) (choice :tag "Uncompress Message" (string :format "%v") (const :tag "No Message" nil)) - (string :tag "Uncompress Program") + (choice :tag "Uncompress Program" + (string) + (const :tag "None" nil)) (repeat :tag "Uncompress Arguments" string) (boolean :tag "Append") (boolean :tag "Strip Extension") |