From: Gerd Moellmann Date: Thu, 15 Mar 2001 09:44:37 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: emacs-pretest-21.0.101~305 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c899e7e637dd931f2b856374e314bd933fe85a57;p=emacs.git *** empty log message *** --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b08881af234..4b1ec4e5263 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2001-03-15 Gerd Moellmann + + * textmodes/ispell.el (ispell-dictionary-alist-6): Add support + for Slovak. From Pavel.Janik@suse.cz (Pavel Jan,Bm(Bk ml.). + 2001-03-14 Gerd Moellmann * bindings.el (features): Add `md5' and `overlay' to the list. diff --git a/src/ChangeLog b/src/ChangeLog index b84e17cdf14..835c9a5d490 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,23 @@ +2001-03-15 Gerd Moellmann + + * data.c (store_symval_forwarding): Add parameter BUF. If BUF is + non-null, set a per-buffer value in BUF instead of the current + buffer. + (swap_in_global_binding, swap_in_symval_forwarding, Fset_default): + Call store_symval_forwarding with BUF null. + (set_internal): Call store_symval_forwarding with the BUF + parameter passed to set_internal. Formerly, the value was always + set in the current buffer; the buffer recorded in specbind for + this case wasn't used. + (arith_driver): Reindent. + + * buffer.c (swap_out_buffer_local_variables): Call + store_symval_forwarding with BUF null. + + * lisp.h (store_symval_forwarding): Change prototype. + + * eval.c (specbind): Call store_symval_forwarding with BUF null. + 2001-03-14 Gerd Moellmann * frame.c (do_switch_frame): Remove unused parameter NO_EVENT, add