hello
I have written few functions, which nearly identical, save for names. For example
; x is name, such as function/paragraph/line/etc.
(defun my-x-function
(interactive)
(mark-x) (do-more-stuff) (modify-x))
is there a way to put it automatically to generate function, paragraph, etc. functions? I have a feeling this is what macros do, but I am not sure how to use them. you help/maybe small example would be great
Thanks