diff options
| author | Stefan Monnier | 2014-03-17 21:51:12 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2014-03-17 21:51:12 -0400 |
| commit | 6c187ef5a510d493bf74de04da2b3a80e944c5e6 (patch) | |
| tree | d95b292464fa019c6816661a6513a25d6a852c2f /lisp/ChangeLog | |
| parent | 09b73f0820fd38194b46aa71e1652c594a25586c (diff) | |
| download | emacs-6c187ef5a510d493bf74de04da2b3a80e944c5e6.tar.gz emacs-6c187ef5a510d493bf74de04da2b3a80e944c5e6.zip | |
* doc/lispref/functions.texi (Advising Functions): Try and improve the text.
Add example use of advice-add.
(Core Advising Primitives): Rename. Explain handling of interactive
specs, including advice-eval-interactive-spec.
(Advising Named Functions): Try and better explain the difference with
add-function.
(Porting old advices): New node.
Fixes: debbugs:16959
Diffstat (limited to 'lisp/ChangeLog')
| -rw-r--r-- | lisp/ChangeLog | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 69419a3d1ea..3cec8c34a2c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -27,8 +27,8 @@ | |||
| 27 | * newcomment.el (comment-beginning): If `comment-start-skip' | 27 | * newcomment.el (comment-beginning): If `comment-start-skip' |
| 28 | doesn't match, move back one char and try again. (Bug#16971) | 28 | doesn't match, move back one char and try again. (Bug#16971) |
| 29 | 29 | ||
| 30 | * emacs-lisp/lisp-mode.el (lisp-mode-variables): Set | 30 | * emacs-lisp/lisp-mode.el (lisp-mode-variables): |
| 31 | `comment-use-syntax' to t to avoid the unnecessary runtime check. | 31 | Set `comment-use-syntax' to t to avoid the unnecessary runtime check. |
| 32 | Set `comment-start-skip' to a simpler value that doesn't try to | 32 | Set `comment-start-skip' to a simpler value that doesn't try to |
| 33 | check if the semicolon is escaped (this is handled by | 33 | check if the semicolon is escaped (this is handled by |
| 34 | `syntax-ppss' now). (Bug#16971) | 34 | `syntax-ppss' now). (Bug#16971) |