]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/data.c (Fmake_variable_buffer_local): Mention `permanent-local'.
authorStefan Monnier <monnier@iro.umontreal.ca>
Sun, 24 Nov 2013 18:20:18 +0000 (13:20 -0500)
committerStefan Monnier <monnier@iro.umontreal.ca>
Sun, 24 Nov 2013 18:20:18 +0000 (13:20 -0500)
src/ChangeLog
src/data.c

index d17f320516c0574077403ec2f1c92bb81164e83b..c3062d0fc0a90d98bab736d092414350c183bd7c 100644 (file)
@@ -1,3 +1,7 @@
+2013-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * data.c (Fmake_variable_buffer_local): Mention `permanent-local'.
+
 2013-11-23  Romain Francoise  <romain@orebokech.com>
 
        * fileio.c (init_fileio): Move `write_region_inhibit_fsync'
index bdd56bf0f62ef0b919c1d44f3a46fba09bdcb7a4..ca896897ddf522ccad851ef3935d402406c88951 100644 (file)
@@ -1551,8 +1551,12 @@ Note that binding the variable with `let', or setting it while
 a `let'-style binding made in this buffer is in effect,
 does not make the variable buffer-local.  Return VARIABLE.
 
-In most cases it is better to use `make-local-variable',
-which makes a variable local in just one buffer.
+This globally affects all uses of this variable, so it belongs together with
+the variable declaration, rather than with its uses (if you just want to make
+a variable local to the current buffer for one particular use, use
+`make-local-variable').  Buffer-local bindings are normally cleared
+while setting up a new major mode, unless they have a `permanent-local'
+property.
 
 The function `default-value' gets the default value and `set-default' sets it.  */)
   (register Lisp_Object variable)