Mercurial > hg > xemacs-beta
comparison man/lispref/variables.texi @ 3510:06a586083be3
[xemacs-hg @ 2006-07-16 10:51:43 by aidan]
Documentation tweaks.
author | aidan |
---|---|
date | Sun, 16 Jul 2006 10:51:48 +0000 |
parents | 6780963faf78 |
children | effcad8baac1 |
comparison
equal
deleted
inserted
replaced
3509:1063a7af543e | 3510:06a586083be3 |
---|---|
1043 @xref{Auto Major Mode}. | 1043 @xref{Auto Major Mode}. |
1044 | 1044 |
1045 @node Creating Buffer-Local | 1045 @node Creating Buffer-Local |
1046 @subsection Creating and Deleting Buffer-Local Bindings | 1046 @subsection Creating and Deleting Buffer-Local Bindings |
1047 | 1047 |
1048 Besides the functions mentioned here, buffer-local variables are also | |
1049 created when file-local variables are set. @xref{Auto Major Mode} | |
1050 . There is no way (outside of `eval' lines, which are normally disabled) | |
1051 to set the global value of a variable from the file local variable | |
1052 specifications. | |
1053 | |
1048 @deffn Command make-local-variable variable | 1054 @deffn Command make-local-variable variable |
1049 This function creates a buffer-local binding in the current buffer for | 1055 This function creates a buffer-local binding in the current buffer for |
1050 @var{variable} (a symbol). Other buffers are not affected. The value | 1056 @var{variable} (a symbol). Other buffers are not affected. The value |
1051 returned is @var{variable}. | 1057 returned is @var{variable}. |
1052 | 1058 |