Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
c3024739
Commit
c3024739
authored
Jan 13, 2015
by
Stefan Monnier
Browse files
Fixes: debbugs:19552
* lisp/emacs-lisp/eieio-core.el (eieio-defclass): Fix call to `defclass'.
parent
0064e36f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/emacs-lisp/eieio-core.el
lisp/emacs-lisp/eieio-core.el
+1
-1
No files found.
lisp/ChangeLog
View file @
c3024739
2015-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
* emacs-lisp/eieio-core.el (eieio-defclass): Fix call to `defclass'
(bug#19552).
2015-01-13 Dmitry Gutov <dgutov@yandex.ru>
* menu-bar.el (menu-bar-goto-menu): Before calling
...
...
lisp/emacs-lisp/eieio-core.el
View file @
c3024739
...
...
@@ -1307,7 +1307,7 @@ method invocation orders of the involved classes."
;; To support .elc files compiled for older versions of EIEIO.
(
defun
eieio-defclass
(
cname
superclasses
slots
options
)
(
eval
`
(
defclass
,
cname
,
superclasses
,
slots
,
options
)))
(
eval
`
(
defclass
,
cname
,
superclasses
,
slots
,
@
options
)))
(
provide
'eieio-core
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment