aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
authorRichard M. Stallman1998-04-03 03:13:32 +0000
committerRichard M. Stallman1998-04-03 03:13:32 +0000
commit37254ece9e58402c2311dbe7c048308aea06d7a0 (patch)
treece4f7910e9f4c551766412b09a29117564bda5d0 /src/data.c
parent5c4626244395759acad2b981fead84cee025cafc (diff)
downloademacs-37254ece9e58402c2311dbe7c048308aea06d7a0.tar.gz
emacs-37254ece9e58402c2311dbe7c048308aea06d7a0.zip
(Fmake_variable_frame_local): Doc fix.
Diffstat (limited to 'src/data.c')
-rw-r--r--src/data.c15
1 files changed, 7 insertions, 8 deletions
diff --git a/src/data.c b/src/data.c
index 300782a5a56..f29d480c976 100644
--- a/src/data.c
+++ b/src/data.c
@@ -1444,14 +1444,13 @@ From now on the default value will apply in this buffer.")
1444 1444
1445DEFUN ("make-variable-frame-local", Fmake_variable_frame_local, Smake_variable_frame_local, 1445DEFUN ("make-variable-frame-local", Fmake_variable_frame_local, Smake_variable_frame_local,
1446 1, 1, "vMake Variable Frame Local: ", 1446 1, 1, "vMake Variable Frame Local: ",
1447 "Make VARIABLE have a separate value for each buffer.\n\ 1447 "Enable VARIABLE to have frame-local bindings.\n\
1448At any time, the value for the current buffer is in effect.\n\ 1448When a frame-local binding exists in the current frame,\n\
1449There is also a default value which is seen in any buffer which has not yet\n\ 1449it is in effect whenever the current buffer has no buffer-local binding.\n\
1450set its own value.\n\ 1450A frame-local binding is actual a frame parameter value;\n\
1451Using `set' or `setq' to set the variable causes it to have a separate value\n\ 1451thus, any given frame has a local binding for VARIABLE\n\
1452for the current buffer if it was previously using the default value.\n\ 1452if it has a value for the frame parameter named VARIABLE.\n\
1453The function `default-value' gets the default value and `set-default' sets it.") 1453See `modify-frame-parameters'.")
1454 (variable)
1455 register Lisp_Object variable; 1454 register Lisp_Object variable;
1456{ 1455{
1457 register Lisp_Object tem, valcontents, newval; 1456 register Lisp_Object tem, valcontents, newval;