diff options
| author | Richard M. Stallman | 1994-04-12 06:06:21 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-04-12 06:06:21 +0000 |
| commit | a782f0d57f9e71e984f042a6dd2545a3393b3d71 (patch) | |
| tree | 69895f2276ea4f13da9798815b49dadfbcd11cee /src | |
| parent | 225feba25f280d93d1d83707b7847a6b037b55fb (diff) | |
| download | emacs-a782f0d57f9e71e984f042a6dd2545a3393b3d71.tar.gz emacs-a782f0d57f9e71e984f042a6dd2545a3393b3d71.zip | |
(Fsetq_default, Fmake_local_variable): Doc syntax fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/data.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/data.c b/src/data.c index 167fc953508..bfcfb0536a8 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -1042,7 +1042,7 @@ for this variable.") | |||
| 1042 | 1042 | ||
| 1043 | DEFUN ("setq-default", Fsetq_default, Ssetq_default, 2, UNEVALLED, 0, | 1043 | DEFUN ("setq-default", Fsetq_default, Ssetq_default, 2, UNEVALLED, 0, |
| 1044 | "\ | 1044 | "\ |
| 1045 | (setq-default SYM VAL SYM VAL ...): set each SYM's default value to its VAL.\n\ | 1045 | \(setq-default SYM VAL SYM VAL...): set each SYM's default value to its VAL.\n\ |
| 1046 | VAL is evaluated; SYM is not. The default value is seen in buffers that do\n\ | 1046 | VAL is evaluated; SYM is not. The default value is seen in buffers that do\n\ |
| 1047 | not have their own values for this variable.") | 1047 | not have their own values for this variable.") |
| 1048 | (args) | 1048 | (args) |
| @@ -1114,8 +1114,8 @@ DEFUN ("make-local-variable", Fmake_local_variable, Smake_local_variable, | |||
| 1114 | 1, 1, "vMake Local Variable: ", | 1114 | 1, 1, "vMake Local Variable: ", |
| 1115 | "Make VARIABLE have a separate value in the current buffer.\n\ | 1115 | "Make VARIABLE have a separate value in the current buffer.\n\ |
| 1116 | Other buffers will continue to share a common default value.\n\ | 1116 | Other buffers will continue to share a common default value.\n\ |
| 1117 | \(The buffer-local value of VARIABLE starts out as the same value\n | 1117 | \(The buffer-local value of VARIABLE starts out as the same value\n\ |
| 1118 | VARIABLE previously had. If VARIABLE was void, it remains void.\)\n | 1118 | VARIABLE previously had. If VARIABLE was void, it remains void.\)\n\ |
| 1119 | See also `make-variable-buffer-local'.\n\n\ | 1119 | See also `make-variable-buffer-local'.\n\n\ |
| 1120 | If the variable is already arranged to become local when set,\n\ | 1120 | If the variable is already arranged to become local when set,\n\ |
| 1121 | this function causes a local value to exist for this buffer,\n\ | 1121 | this function causes a local value to exist for this buffer,\n\ |