Mercurial > hg > xemacs-beta
diff lisp/dialog.el @ 5333:aa2705c83c24
Correct a misplaced parenthesis in #'make-dialog-box, thank you Mats!
2011-01-10 Aidan Kehoe <kehoea@parhasard.net>
* dialog.el (make-dialog-box): Correct a misplaced parenthesis
here, thank you Mats Lidell in 87zkr9gqrh.fsf@mail.contactor.se !
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Mon, 10 Jan 2011 17:55:06 +0000 |
parents | fbafdc1bb4d2 |
children | 7ebbe334061e |
line wrap: on
line diff
--- a/lisp/dialog.el Sun Jan 02 18:05:05 2011 +0000 +++ b/lisp/dialog.el Mon Jan 10 17:55:06 2011 +0000 @@ -663,9 +663,9 @@ (remf rest :modal) (if modal (dialog-box-modal-loop `(make-dialog-box-internal ',type ',rest)) - (make-dialog-box-internal type rest)))) - (t - (make-dialog-box-internal type rest)))) + (make-dialog-box-internal type rest))) + (t + (make-dialog-box-internal type rest))))) (defun dialog-box-finish (result) "Exit a modal dialog box, returning RESULT.