(defun (setf xwin-border-width) (width win)
(setf (xlib:drawable-border-width win) width))
then how to call the above function ? In fact i donot really understand what “(setf xwin-border-width)” means in place of function time ?
Sincerely !
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This defines a
setffunction. You can call it using(setf (xwin-border-width *some-window*) width).You might find the documentation for
setfuseful: http://www.lispworks.com/documentation/lw50/CLHS/Body/m_setf_.htmThe Hyperspec also has a section on generalised references: http://www.lispworks.com/documentation/lw50/CLHS/Body/05_a.htm