From 2d288081218fead574c0355abe5536bffb3b1367 Mon Sep 17 00:00:00 2001 From: Daniel Koning Date: Mon, 5 Aug 2019 18:27:56 -0500 Subject: [PATCH] Correct argument name in `defadvice!' docstring --- core/core-lib.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/core-lib.el b/core/core-lib.el index 283e4ef32..c759a90db 100644 --- a/core/core-lib.el +++ b/core/core-lib.el @@ -461,7 +461,7 @@ writes to `standard-output'." ;;; Definers (defmacro defadvice! (symbol arglist &optional docstring &rest body) - "Define an advice called NAME and add it to PLACES. + "Define an advice called SYMBOL and add it to PLACES. ARGLIST is as in `defun'. WHERE is a keyword as passed to `advice-add', and PLACE is the function to which to add the advice, like in `advice-add'.