diff options
author | Richard M. Stallman <rms@gnu.org> | 2005-04-17 16:00:48 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2005-04-17 16:00:48 +0000 |
commit | e21c148e2ccd96cfceeecde86d6d91782fa7bae2 (patch) | |
tree | 0d97ec08f0fcac28e1099353c2ef50600229e50b /lisp/jka-compr.el | |
parent | 1ef0ffc603eb56533d3f6755c51009065a4ebba5 (diff) | |
download | emacs-e21c148e2ccd96cfceeecde86d6d91782fa7bae2.tar.gz |
(jka-compr-compression-info-list): Fix custom type.
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") |