diff options
| author | Juanma Barranquero | 2011-03-22 21:58:27 +0100 |
|---|---|---|
| committer | Juanma Barranquero | 2011-03-22 21:58:27 +0100 |
| commit | 9d0da923ebd2b78abb6e02f0b90cfe9d818eb301 (patch) | |
| tree | c087e97f9b28a73b55aefe85ee0e7755903336fb | |
| parent | 6508470910c69fd647547b55191b29aea341f593 (diff) | |
| download | emacs-9d0da923ebd2b78abb6e02f0b90cfe9d818eb301.tar.gz emacs-9d0da923ebd2b78abb6e02f0b90cfe9d818eb301.zip | |
lisp/emacs-lisp/derived.el: Don't warn about keymaps already `defconst'ed.
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/emacs-lisp/derived.el | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 6b7dd5a0463..e508174e118 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2011-03-22 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of | ||
| 4 | keymap variable in `with-no-warnings' to avoid a warning when the | ||
| 5 | keymap has been already `defconst'ed. | ||
| 6 | |||
| 1 | 2011-03-22 Leo Liu <sdl.web@gmail.com> | 7 | 2011-03-22 Leo Liu <sdl.web@gmail.com> |
| 2 | 8 | ||
| 3 | * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can | 9 | * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can |
diff --git a/lisp/emacs-lisp/derived.el b/lisp/emacs-lisp/derived.el index 425a77ee77f..1db98ac39c8 100644 --- a/lisp/emacs-lisp/derived.el +++ b/lisp/emacs-lisp/derived.el | |||
| @@ -201,7 +201,7 @@ No problems result if this variable is not bound. | |||
| 201 | name)))) | 201 | name)))) |
| 202 | (unless (boundp ',map) | 202 | (unless (boundp ',map) |
| 203 | (put ',map 'definition-name ',child)) | 203 | (put ',map 'definition-name ',child)) |
| 204 | (defvar ,map (make-sparse-keymap)) | 204 | (with-no-warnings (defvar ,map (make-sparse-keymap))) |
| 205 | (unless (get ',map 'variable-documentation) | 205 | (unless (get ',map 'variable-documentation) |
| 206 | (put ',map 'variable-documentation | 206 | (put ',map 'variable-documentation |
| 207 | (purecopy ,(format "Keymap for `%s'." child)))) | 207 | (purecopy ,(format "Keymap for `%s'." child)))) |