emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

define-advice, advise, defnadvice, advice-advise you name it


From: Leo Liu
Subject: define-advice, advise, defnadvice, advice-advise you name it
Date: Mon, 17 Nov 2014 05:11:27 +0800
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.50 (CentOS Linux 7 (Core))

Hi folks,

Stefan has agreed to add a macro as follows:

   (defmacro define-advice (symbol args &rest body)
     "Define an advice and add it to function named SYMBOL.
   See `advice-add' and `add-function' for explanation on the
   arguments.  Note if NAME is nil the advice is anonymous;
   otherwise it is named address@hidden'.
   
   \(fn SYMBOL (WHERE LAMBDA-LIST &optional NAME DEPTH) &rest BODY)"
     (declare (indent 2) (doc-string 3) (debug (sexp sexp body)))
     (or (listp args) (signal 'wrong-type-argument (list 'listp args)))
     (or (<= 2 (length args) 4)
         (signal 'wrong-number-of-arguments (list 2 4 (length args))))
     (let* ((where         (nth 0 args))
            (lambda-list   (nth 1 args))
            (name          (nth 2 args))
            (depth         (nth 3 args))
            (props         (and depth `((depth . ,depth))))
            (advice (cond ((null name) `(lambda ,lambda-list ,@body))
                          ((or (stringp name) (symbolp name))
                           (intern (format "address@hidden" symbol name)))
                          (t (error "Unrecognized name spec `%S'" name)))))
       `(prog1 ,@(and (symbolp advice) `((defun ,advice ,lambda-list ,@body)))
          (advice-add ',symbol ,where #',advice ,@(and props `(',props))))))

`advise' is out because it is not in the `advice' namespace;
`defnadvice' is inferior to define-advice;
`advice-advise' is odd

So far we can accept define-advice but feel something lacking due to:

  given primitives "define-foo", "foo-add" and "foo-remove", it really
  sounds like the first defines something that you can then pass to the
  second and the third.

So does anyone have something that sounds advicey and macroish?

Thanks,
Leo




reply via email to

[Prev in Thread] Current Thread [Next in Thread]