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
2e7eba60
Commit
2e7eba60
authored
Oct 04, 2009
by
Chong Yidong
Browse files
* cedet/ede/proj-comp.el: Don't require ede/pmake at toplevel.
(ede-proj-makefile-insert-variables): Require ede/pmake.
parent
9a03b2e1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/cedet/ede/proj-comp.el
lisp/cedet/ede/proj-comp.el
+2
-1
No files found.
lisp/ChangeLog
View file @
2e7eba60
2009-10-04 Chong Yidong <cyd@stupidchicken.com>
* cedet/ede/proj-comp.el: Don't require ede/pmake at toplevel.
(ede-proj-makefile-insert-variables): Require ede/pmake.
2009-10-04 Michael Albinus <michael.albinus@gmx.de>
2009-10-04 Michael Albinus <michael.albinus@gmx.de>
* files.el (copy-directory): New defun.
* files.el (copy-directory): New defun.
...
...
lisp/cedet/ede/proj-comp.el
View file @
2e7eba60
...
@@ -46,7 +46,7 @@
...
@@ -46,7 +46,7 @@
(
require
'ede
)
;source object
(
require
'ede
)
;source object
(
require
'ede/autoconf-edit
)
(
require
'ede/autoconf-edit
)
(
eval-when-compile
(
requir
e
'
ede/pmake
)
)
(
declare-function
ede-pmake-insert-variable-onc
e
"
ede/pmake
"
)
;;; Types:
;;; Types:
(
defclass
ede-compilation-program
(
eieio-instance-inheritor
)
(
defclass
ede-compilation-program
(
eieio-instance-inheritor
)
...
@@ -253,6 +253,7 @@ This will prevent rules from creating duplicate variables or rules."
...
@@ -253,6 +253,7 @@ This will prevent rules from creating duplicate variables or rules."
(
defmethod
ede-proj-makefile-insert-variables
((
this
ede-compilation-program
))
(
defmethod
ede-proj-makefile-insert-variables
((
this
ede-compilation-program
))
"Insert variables needed by the compiler THIS."
"Insert variables needed by the compiler THIS."
(
require
'ede/pmake
)
(
if
(
eieio-instance-inheritor-slot-boundp
this
'variables
)
(
if
(
eieio-instance-inheritor-slot-boundp
this
'variables
)
(
with-slots
(
variables
)
this
(
with-slots
(
variables
)
this
(
mapcar
(
mapcar
...
...
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