diff options
| author | Gerd Moellmann | 1999-11-16 13:35:20 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 1999-11-16 13:35:20 +0000 |
| commit | 9e207b901d27b938708a306e0685db46de5b89a4 (patch) | |
| tree | b87a377c008cfdae8495db180da23f387f94851b | |
| parent | d01a33cf8d8855f935b5e93145ab8e5cfb99f598 (diff) | |
| download | emacs-9e207b901d27b938708a306e0685db46de5b89a4.tar.gz emacs-9e207b901d27b938708a306e0685db46de5b89a4.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 11 | ||||
| -rw-r--r-- | lisp/ChangeLog | 12 |
2 files changed, 23 insertions, 0 deletions
| @@ -575,6 +575,17 @@ Note that +++ before an item means the Lisp manual has been updated. | |||
| 575 | When you add a new item, please add it without either +++ or --- | 575 | When you add a new item, please add it without either +++ or --- |
| 576 | so I will know I still need to look at it -- rms. | 576 | so I will know I still need to look at it -- rms. |
| 577 | 577 | ||
| 578 | ** The new macro `with-syntax-table' can be used to evaluate forms | ||
| 579 | with the syntax table of the current buffer temporarily set to a | ||
| 580 | specified table. | ||
| 581 | |||
| 582 | (with-syntax-table TABLE &rest BODY) | ||
| 583 | |||
| 584 | Evaluate BODY with syntax table of current buffer set to a copy of | ||
| 585 | TABLE. Point, mark, current buffer, and syntax table are saved, BODY | ||
| 586 | is evaluated, and the saved values are restored, even in case of an | ||
| 587 | abnormal exit. Value is what BODY returns. | ||
| 588 | |||
| 578 | ** The optional argument BUFFER of function file-local-copy has been | 589 | ** The optional argument BUFFER of function file-local-copy has been |
| 579 | removed since it wasn't used by anything. | 590 | removed since it wasn't used by anything. |
| 580 | 591 | ||
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 27426f615de..3a3642ade96 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,15 @@ | |||
| 1 | 1999-11-16 Gerd Moellmann <gerd@gnu.org> | ||
| 2 | |||
| 3 | * mail/supercite.el: New maintainer. | ||
| 4 | |||
| 5 | 1999-11-16 Reto Zimmermann <reto@synopsys.com> | ||
| 6 | |||
| 7 | * progmodes/vhdl-mode.el: Use new backquote syntax. | ||
| 8 | |||
| 9 | 1999-11-16 Gerd Moellmann <gerd@gnu.org> | ||
| 10 | |||
| 11 | * simple.el (with-syntax-table): New. | ||
| 12 | |||
| 1 | 1999-11-15 Sam Steingold <sds@ksp.com> | 13 | 1999-11-15 Sam Steingold <sds@ksp.com> |
| 2 | 14 | ||
| 3 | * dabbrev.el (dabbrev-filter-elements): Use the new backquote syntax. | 15 | * dabbrev.el (dabbrev-filter-elements): Use the new backquote syntax. |