]> git.eshelyaron.com Git - emacs.git/commitdiff
* emacs-lisp/advice.el: Fix typos in comment.
authorTsuyoshi Kitamoto <tsuyoshi.kitamoto@gmail.com>
Tue, 13 Nov 2012 18:09:20 +0000 (13:09 -0500)
committerStefan Monnier <monnier@iro.umontreal.ca>
Tue, 13 Nov 2012 18:09:20 +0000 (13:09 -0500)
lisp/emacs-lisp/nadvice.el

index ca1ebf3cad2d1b1714cd33d0486c209dd5da229e..ff30d9e7fa44be8e23ef9236bd0c71512d5a8835 100644 (file)
@@ -30,7 +30,7 @@
 ;;   holds a function.
 ;;   This part provides mainly 2 macros: `add-function' and `remove-function'.
 ;;
-;; - The second part provides `add-advice' and `remove-advice' which are
+;; - The second part provides `advice-add' and `advice-remove' which are
 ;;   refined version of the previous macros specially tailored for the case
 ;;   where the place that we want to modify is a `symbol-function'.
 
@@ -234,7 +234,7 @@ of the piece of advice."
   (cond
    ((special-form-p def)
     ;; Not worth the trouble trying to handle this, I think.
-    (error "add-advice failure: %S is a special form" symbol))
+    (error "advice-add failure: %S is a special form" symbol))
    ((and (symbolp def)
         (eq 'macro (car-safe (ignore-errors (indirect-function def)))))
     (let ((newval (cons 'macro (cdr (indirect-function def)))))