Mercurial > emacs
changeset 27300:baffb2de5ce9
*** empty log message ***
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 12 Jan 2000 03:08:29 +0000 |
parents | 1d7b2d2038af |
children | 8c79b30d8475 |
files | lisp/ChangeLog lisp/emacs-lisp/lisp-mode.el src/ChangeLog |
diffstat | 3 files changed, 12 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Wed Jan 12 03:07:10 2000 +0000 +++ b/lisp/ChangeLog Wed Jan 12 03:08:29 2000 +0000 @@ -1,3 +1,14 @@ +2000-01-11 Richard M. Stallman <rms@caffeine.ai.mit.edu> + + * emacs-lisp/edebug.el (with-syntax-table): Add a def-edebug-spec. + + * emacs-lisp/lisp-mode.el (with-syntax-table): + Set up lisp-indent-function property. + + * subr.el (with-syntax-table): Moved from simple.el. + + * simple.el (with-syntax-table): Moved to subr.el. + 2000-01-11 Gerd Moellmann <gerd@gnu.org> * tmm.el (tmm-shortcut): Delete region after prompt instead
--- a/lisp/emacs-lisp/lisp-mode.el Wed Jan 12 03:07:10 2000 +0000 +++ b/lisp/emacs-lisp/lisp-mode.el Wed Jan 12 03:08:29 2000 +0000 @@ -722,6 +722,7 @@ (put 'with-temp-file 'lisp-indent-function 1) (put 'with-temp-buffer 'lisp-indent-function 0) (put 'with-temp-message 'lisp-indent-function 1) +(put 'with-syntax-table 'lisp-indent-function 1) (put 'let 'lisp-indent-function 1) (put 'let* 'lisp-indent-function 1) (put 'while 'lisp-indent-function 1)