# HG changeset patch # User Luc Teirlinck # Date 1094613984 0 # Node ID ef2bf59ff39ef89487bd0f0f6607d3d7c3ac3c69 # Parent 1b918ff286e6577a6e54745ac9a3ce7a8636fa63 *** empty log message *** diff -r 1b918ff286e6 -r ef2bf59ff39e etc/NEWS --- a/etc/NEWS Wed Sep 08 03:07:42 2004 +0000 +++ b/etc/NEWS Wed Sep 08 03:26:24 2004 +0000 @@ -2227,6 +2227,10 @@ * Lisp Changes in Emacs 21.4 +++ +** `auto-save-file-format' has been renamed to +`buffer-auto-save-file-format' and made into a permanent local. + ++++ ** Both the variable and the function `disabled-command-hook' have been renamed to `disabled-command-function'. The variable `disabled-command-hook' has been kept as an obsolete alias. diff -r 1b918ff286e6 -r ef2bf59ff39e lisp/ChangeLog --- a/lisp/ChangeLog Wed Sep 08 03:07:42 2004 +0000 +++ b/lisp/ChangeLog Wed Sep 08 03:26:24 2004 +0000 @@ -1,3 +1,7 @@ +2004-09-07 Luc Teirlinck + + * format.el (buffer-auto-save-file-format): Make it permanent local. + 2004-09-07 Kim F. Storm * emacs-lisp/authors.el (authors-aliases): Add more aliases. diff -r 1b918ff286e6 -r ef2bf59ff39e lispref/ChangeLog --- a/lispref/ChangeLog Wed Sep 08 03:07:42 2004 +0000 +++ b/lispref/ChangeLog Wed Sep 08 03:26:24 2004 +0000 @@ -1,3 +1,12 @@ +2004-09-07 Luc Teirlinck + + * locals.texi (Standard Buffer-Local Variables): Add + `buffer-auto-save-file-format'. + * internals.texi (Buffer Internals): Describe new + auto_save_file_format field of the buffer structure. + * files.texi (Format Conversion): `auto-save-file-format' has been + renamed `buffer-auto-save-file-format'. + 2004-08-27 Luc Teirlinck * abbrevs.texi (Abbrev Expansion): `abbrev-start-location' can be diff -r 1b918ff286e6 -r ef2bf59ff39e src/ChangeLog --- a/src/ChangeLog Wed Sep 08 03:07:42 2004 +0000 +++ b/src/ChangeLog Wed Sep 08 03:26:24 2004 +0000 @@ -1,12 +1,10 @@ 2004-09-07 Luc Teirlinck * buffer.h (struct buffer): Add auto_save_file_format field. - * buffer.c (reset_buffer, init_buffer_once): Handle auto_save_file_format field. (syms_of_buffer): Add DEFVAR_PER_BUFFER for `buffer-auto-save-file-format'. - * fileio.c: Delete declaration for removed Vauto_save_file_format. (build_annotations): Adapt to replacement of `auto-save-file-format' with the new buffer-local variable