diff options
| author | 2013-05-19 03:16:33 +0200 | |
|---|---|---|
| committer | 2013-05-19 03:16:33 +0200 | |
| commit | 49639ee0ee1426f074a5bc0ad759ca2920fa422b (patch) | |
| tree | 1e43cac226122a88d9bff1028c9a84f2459df013 | |
| parent | 57a4ee838a91e2116b6d09cd8d401aa1c27f6fa1 (diff) | |
| download | eliss-49639ee0ee1426f074a5bc0ad759ca2920fa422b.tar.gz eliss-49639ee0ee1426f074a5bc0ad759ca2920fa422b.zip | |
Keep eliss-control-group from outputting nil="nil"
| -rw-r--r-- | eliss.el | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -80,8 +80,9 @@ certain other properties. (input (@ (type "text") (name ,name) (id ,name) - ,(when placeholder `(placeholder ,placeholder)) - ,(when default `(value ,default)))))))) + ,@(when placeholder + `((placeholder ,placeholder))) + ,@(when default `((value ,default))))))))) (defun eliss-project-page (httpcon) "Send a list of issues and an issue-creation form over HTTPCON." |
