diff options
| author | Stefan Monnier | 2011-05-07 23:33:28 -0300 |
|---|---|---|
| committer | Stefan Monnier | 2011-05-07 23:33:28 -0300 |
| commit | c46626351cb23fdb990174ad86da00bd4e159c81 (patch) | |
| tree | a214d94da30ebd419c7647cfc277dd6785c0dbf2 | |
| parent | 605c9376615199941166d9441add6b55be23f2ce (diff) | |
| download | emacs-c46626351cb23fdb990174ad86da00bd4e159c81.tar.gz emacs-c46626351cb23fdb990174ad86da00bd4e159c81.zip | |
* lisp/emacs-lisp/eieio.el (defmethod): Fix typo in last change.
| -rw-r--r-- | lisp/ChangeLog | 12 | ||||
| -rw-r--r-- | lisp/emacs-lisp/eieio.el | 4 |
2 files changed, 10 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 449c67b0cfb..d50712503f2 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,10 +1,14 @@ | |||
| 1 | 2011-05-08 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * emacs-lisp/eieio.el (defmethod): Fix typo in last change. | ||
| 4 | |||
| 1 | 2011-05-07 Eli Zaretskii <eliz@gnu.org> | 5 | 2011-05-07 Eli Zaretskii <eliz@gnu.org> |
| 2 | 6 | ||
| 3 | * mail/sendmail.el (send-mail-function): On MS-Windows, default to | 7 | * mail/sendmail.el (send-mail-function): On MS-Windows, default to |
| 4 | mailclient-send-it even if window-system is nil. (Bug#8595) | 8 | mailclient-send-it even if window-system is nil. (Bug#8595) |
| 5 | 9 | ||
| 6 | * term/w32console.el (terminal-init-w32console): Call | 10 | * term/w32console.el (terminal-init-w32console): |
| 7 | get-screen-color and use its output to set the frame | 11 | Call get-screen-color and use its output to set the frame |
| 8 | background-mode. (Bug#8597) | 12 | background-mode. (Bug#8597) |
| 9 | 13 | ||
| 10 | 2011-05-07 Stefan Monnier <monnier@iro.umontreal.ca> | 14 | 2011-05-07 Stefan Monnier <monnier@iro.umontreal.ca> |
| @@ -65,8 +69,8 @@ | |||
| 65 | 69 | ||
| 66 | 2011-05-05 Michael Albinus <michael.albinus@gmx.de> | 70 | 2011-05-05 Michael Albinus <michael.albinus@gmx.de> |
| 67 | 71 | ||
| 68 | * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band): Fix | 72 | * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band): |
| 69 | port computation bug. (Bug#8618) | 73 | Fix port computation bug. (Bug#8618) |
| 70 | 74 | ||
| 71 | 2011-05-05 Glenn Morris <rgm@gnu.org> | 75 | 2011-05-05 Glenn Morris <rgm@gnu.org> |
| 72 | 76 | ||
diff --git a/lisp/emacs-lisp/eieio.el b/lisp/emacs-lisp/eieio.el index d71213bfac8..6abf9aa3657 100644 --- a/lisp/emacs-lisp/eieio.el +++ b/lisp/emacs-lisp/eieio.el | |||
| @@ -1298,11 +1298,11 @@ Summary: | |||
| 1298 | (let* ((key (if (keywordp (car args)) (pop args))) | 1298 | (let* ((key (if (keywordp (car args)) (pop args))) |
| 1299 | (params (car args)) | 1299 | (params (car args)) |
| 1300 | (arg1 (car params)) | 1300 | (arg1 (car params)) |
| 1301 | (args (if (consp arg1) | 1301 | (fargs (if (consp arg1) |
| 1302 | (cons (car arg1) (cdr params)) | 1302 | (cons (car arg1) (cdr params)) |
| 1303 | params)) | 1303 | params)) |
| 1304 | (class (if (consp arg1) (nth 1 arg1))) | 1304 | (class (if (consp arg1) (nth 1 arg1))) |
| 1305 | (code `(lambda ,args ,@(cdr args)))) | 1305 | (code `(lambda ,fargs ,@(cdr args)))) |
| 1306 | `(progn | 1306 | `(progn |
| 1307 | ;; Make sure there is a generic and the byte-compiler sees it. | 1307 | ;; Make sure there is a generic and the byte-compiler sees it. |
| 1308 | (defgeneric ,method ,args | 1308 | (defgeneric ,method ,args |