Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
4d4d36b1
Commit
4d4d36b1
authored
Oct 30, 2005
by
Richard M. Stallman
Browse files
(Fmake_variable_frame_local): Doc fix.
parent
bccfb310
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
8 deletions
+14
-8
src/data.c
src/data.c
+14
-8
No files found.
src/data.c
View file @
4d4d36b1
...
...
@@ -1709,14 +1709,20 @@ From now on the default value will apply in this buffer. Return VARIABLE. */)
DEFUN ("make-variable-frame-local", Fmake_variable_frame_local, Smake_variable_frame_local,
1, 1, "vMake Variable Frame Local: ",
doc: /* Enable VARIABLE to have frame-local bindings.
When a frame-local binding exists in the current frame,
it is in effect whenever the current buffer has no buffer-local binding.
A frame-local binding is actually a frame parameter value;
thus, any given frame has a local binding for VARIABLE if it has
a value for the frame parameter named VARIABLE. Return VARIABLE.
This function does not in itself create any frame-local bindings for
VARIABLE. See `modify-frame-parameters' for how to set frame parameters. */)
This does not create any frame-local bindings for VARIABLE,
it just makes them possible.
A frame-local binding is actually a frame parameter value.
If a frame F has a value for the frame parameter named VARIABLE,
that also acts as a frame-local binding for VARIABLE in F--
provided this function has been called to enable VARIABLE
to have frame-local bindings at all.
The only way to create a frame-local binding for VARIABLE in a frame
is to set the VARIABLE frame parameter of that frame. See
`modify-frame-parameters' for how to set frame parameters.
Buffer-local bindings take precedence over frame-local bindings. */)
(variable)
register Lisp_Object variable;
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment