diff options
| author | Artur Malabarba | 2015-11-16 09:49:00 +0000 |
|---|---|---|
| committer | Artur Malabarba | 2015-11-16 09:49:00 +0000 |
| commit | 63acb2e8688db09f24b3a4a2dcb37eb597e12ef8 (patch) | |
| tree | a3808ce0e03de009952200622261d4693f1f709f | |
| parent | dbc090aeabe2cf80b1ab213b101c58d362a88d12 (diff) | |
| download | emacs-63acb2e8688db09f24b3a4a2dcb37eb597e12ef8.tar.gz emacs-63acb2e8688db09f24b3a4a2dcb37eb597e12ef8.zip | |
* lisp/emacs-lisp/nadvice.el (add-function): Escape quote
| -rw-r--r-- | lisp/emacs-lisp/nadvice.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/nadvice.el b/lisp/emacs-lisp/nadvice.el index 2cd34e12810..1882eb194f6 100644 --- a/lisp/emacs-lisp/nadvice.el +++ b/lisp/emacs-lisp/nadvice.el | |||
| @@ -279,7 +279,7 @@ a special meaning: | |||
| 279 | whereas a depth of -100 means that the advice should be outermost. | 279 | whereas a depth of -100 means that the advice should be outermost. |
| 280 | 280 | ||
| 281 | If PLACE is a symbol, its `default-value' will be affected. | 281 | If PLACE is a symbol, its `default-value' will be affected. |
| 282 | Use (local 'SYMBOL) if you want to apply FUNCTION to SYMBOL buffer-locally. | 282 | Use (local \\='SYMBOL) if you want to apply FUNCTION to SYMBOL buffer-locally. |
| 283 | Use (var VAR) if you want to apply FUNCTION to the (lexical) VAR. | 283 | Use (var VAR) if you want to apply FUNCTION to the (lexical) VAR. |
| 284 | 284 | ||
| 285 | If one of FUNCTION or OLDFUN is interactive, then the resulting function | 285 | If one of FUNCTION or OLDFUN is interactive, then the resulting function |