Mercurial > hg > xemacs-beta
changeset 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 | 1dbc93b7ba19 |
children | b249c479f9e1 |
files | lisp/ChangeLog lisp/dialog.el |
diffstat | 2 files changed, 8 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Sun Jan 02 18:05:05 2011 +0000 +++ b/lisp/ChangeLog Mon Jan 10 17:55:06 2011 +0000 @@ -1,3 +1,8 @@ +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 ! + 2011-01-02 Aidan Kehoe <kehoea@parhasard.net> * dialog.el (make-dialog-box):
--- 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.