Message 1 of 6
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Greetings to all,
I have the following question. Is there some method for determining the condition of calling one function from another function? I'll explain what I mean.
Let's say there are some three functions: (fA) (fB) (fC).
Now the question. Is it possible inside the function (fA) to set a condition like:
(defun fA nil
(if <function (fA) will be called from function (fB) then>
<execute expression 1>
(if <function (fA) will be called from function (fC) then>
<execute expression 2>
)
)
)
Solved! Go to Solution.