aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman2005-10-30 03:02:43 +0000
committerRichard M. Stallman2005-10-30 03:02:43 +0000
commit4d4d36b1bc12d05523f869c5bb37bf1765eff055 (patch)
treea3905e6782f4716e1de57cec712688c9f570505a /src
parentbccfb31031b10ac2de02bf061516fd8fbdf6d56b (diff)
downloademacs-4d4d36b1bc12d05523f869c5bb37bf1765eff055.tar.gz
emacs-4d4d36b1bc12d05523f869c5bb37bf1765eff055.zip
(Fmake_variable_frame_local): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/data.c22
1 files changed, 14 insertions, 8 deletions
diff --git a/src/data.c b/src/data.c
index 319f8768424..75fa3a89086 100644
--- a/src/data.c
+++ b/src/data.c
@@ -1709,14 +1709,20 @@ From now on the default value will apply in this buffer. Return VARIABLE. */)
1709DEFUN ("make-variable-frame-local", Fmake_variable_frame_local, Smake_variable_frame_local, 1709DEFUN ("make-variable-frame-local", Fmake_variable_frame_local, Smake_variable_frame_local,
1710 1, 1, "vMake Variable Frame Local: ", 1710 1, 1, "vMake Variable Frame Local: ",
1711 doc: /* Enable VARIABLE to have frame-local bindings. 1711 doc: /* Enable VARIABLE to have frame-local bindings.
1712When a frame-local binding exists in the current frame, 1712This does not create any frame-local bindings for VARIABLE,
1713it is in effect whenever the current buffer has no buffer-local binding. 1713it just makes them possible.
1714A frame-local binding is actually a frame parameter value; 1714
1715thus, any given frame has a local binding for VARIABLE if it has 1715A frame-local binding is actually a frame parameter value.
1716a value for the frame parameter named VARIABLE. Return VARIABLE. 1716If a frame F has a value for the frame parameter named VARIABLE,
1717 1717that also acts as a frame-local binding for VARIABLE in F--
1718This function does not in itself create any frame-local bindings for 1718provided this function has been called to enable VARIABLE
1719VARIABLE. See `modify-frame-parameters' for how to set frame parameters. */) 1719to have frame-local bindings at all.
1720
1721The only way to create a frame-local binding for VARIABLE in a frame
1722is to set the VARIABLE frame parameter of that frame. See
1723`modify-frame-parameters' for how to set frame parameters.
1724
1725Buffer-local bindings take precedence over frame-local bindings. */)
1720 (variable) 1726 (variable)
1721 register Lisp_Object variable; 1727 register Lisp_Object variable;
1722{ 1728{