Mercurial > emacs
diff lisp/button.el @ 91704:bd5e4ff73402
* button.el (button-map):
* wid-edit.el (widget-keymap): Avoid line-end confusion in autoloads.
| author | Jason Rumney <jasonr@gnu.org> |
|---|---|
| date | Sat, 09 Feb 2008 22:48:06 +0000 |
| parents | ad6ec43b41bc |
| children | 73a01bf5cb80 |
line wrap: on
line diff
--- a/lisp/button.el Sat Feb 09 21:59:34 2008 +0000 +++ b/lisp/button.el Sat Feb 09 22:48:06 2008 +0000 @@ -64,7 +64,9 @@ ;;;###autoload (defvar button-map (let ((map (make-sparse-keymap))) - (define-key map "\r" 'push-button) + ;; The following definition needs to avoid using escape sequences that + ;; might get converted to ^M when building loaddefs.el + (define-key map [(control ?m)] 'push-button) (define-key map [mouse-2] 'push-button) map) "Keymap used by buttons.")
