diff options
| -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." | |||
| 198 | (choice :tag "Compress Message" | 198 | (choice :tag "Compress Message" |
| 199 | (string :format "%v") | 199 | (string :format "%v") |
| 200 | (const :tag "No Message" nil)) | 200 | (const :tag "No Message" nil)) |
| 201 | (string :tag "Compress Program") | 201 | (choice :tag "Compress Program" |
| 202 | (string) | ||
| 203 | (const :tag "None" nil)) | ||
| 202 | (repeat :tag "Compress Arguments" string) | 204 | (repeat :tag "Compress Arguments" string) |
| 203 | (choice :tag "Uncompress Message" | 205 | (choice :tag "Uncompress Message" |
| 204 | (string :format "%v") | 206 | (string :format "%v") |
| 205 | (const :tag "No Message" nil)) | 207 | (const :tag "No Message" nil)) |
| 206 | (string :tag "Uncompress Program") | 208 | (choice :tag "Uncompress Program" |
| 209 | (string) | ||
| 210 | (const :tag "None" nil)) | ||
| 207 | (repeat :tag "Uncompress Arguments" string) | 211 | (repeat :tag "Uncompress Arguments" string) |
| 208 | (boolean :tag "Append") | 212 | (boolean :tag "Append") |
| 209 | (boolean :tag "Strip Extension") | 213 | (boolean :tag "Strip Extension") |