]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix buffer-stale-function fix
authorLars Ingebrigtsen <larsi@gnus.org>
Tue, 12 Jul 2022 12:39:52 +0000 (14:39 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Tue, 12 Jul 2022 12:39:52 +0000 (14:39 +0200)
* src/buffer.c (Fmake_indirect_buffer): Kill the local
buffer-stale-function variable instead of setting it
buffer-locally to the default value.  This should have the same
effect, but is less confusing.

src/buffer.c

index a6d3604065e5da6a560cef59e2dbbfa57c3e1d1a..e5fa09a9789d21cac27d81b6a2a79cb1f6c775a0 100644 (file)
@@ -912,7 +912,7 @@ does not run the hooks `kill-buffer-hook',
       Fset (intern ("buffer-save-without-query"), Qnil);
       Fset (intern ("buffer-file-number"), Qnil);
       if (!NILP (Flocal_variable_p (Qbuffer_stale_function, base_buffer)))
-       Fset (Qbuffer_stale_function, Qbuffer_stale__default_function);
+       Fkill_local_variable (Qbuffer_stale_function);
       /* Cloned buffers need extra setup, to do things such as deep
         variable copies for list variables that might be mangled due
         to destructive operations in the indirect buffer. */
@@ -6480,7 +6480,6 @@ will run for `clone-indirect-buffer' calls as well.  */);
   DEFSYM (Qkill_buffer__possibly_save, "kill-buffer--possibly-save");
 
   DEFSYM (Qbuffer_stale_function, "buffer-stale-function");
-  DEFSYM (Qbuffer_stale__default_function, "buffer-stale--default-function");
 
   Fput (intern_c_string ("erase-buffer"), Qdisabled, Qt);
 }