I just switched my terminal to UTF-8 and got UTF-8 working in emacs and slime with SBCL. Now I want to write some funny lisp. I want λ to be interpreted as lambda, like an alias or something. I already figured out how to "alias" functions:
Now, I'd like to do the same thing for macros. Any ideas?
(setf (symbol-function 'add) #'+)
or
(setf (symbol-function 'add) (symbol-function '+))
I know that just redefines the function under a new name, but that's fine by me.Now, I'd like to do the same thing for macros. Any ideas?