diff options
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/emacs/files.texi | 5 | ||||
| -rw-r--r-- | doc/lispref/backups.texi | 6 |
2 files changed, 6 insertions, 5 deletions
diff --git a/doc/emacs/files.texi b/doc/emacs/files.texi index 7221edcc1b2..f5dd408cc9f 100644 --- a/doc/emacs/files.texi +++ b/doc/emacs/files.texi | |||
| @@ -690,8 +690,9 @@ non-@code{nil} (the default is @code{t}), and renaming would change | |||
| 690 | the file's owner or group, use copying. | 690 | the file's owner or group, use copying. |
| 691 | 691 | ||
| 692 | If you change @code{backup-by-copying-when-mismatch} to @code{nil}, | 692 | If you change @code{backup-by-copying-when-mismatch} to @code{nil}, |
| 693 | Emacs checks the numeric user-id of the file's owner. If this is | 693 | Emacs checks the numeric user-id of the file's owner and the numeric |
| 694 | higher than @code{backup-by-copying-when-privileged-mismatch}, then it | 694 | group-id of the file's group. If either is |
| 695 | no greater than @code{backup-by-copying-when-privileged-mismatch}, then it | ||
| 695 | behaves as though @code{backup-by-copying-when-mismatch} is | 696 | behaves as though @code{backup-by-copying-when-mismatch} is |
| 696 | non-@code{nil} anyway. | 697 | non-@code{nil} anyway. |
| 697 | 698 | ||
diff --git a/doc/lispref/backups.texi b/doc/lispref/backups.texi index 6a5b6d1661d..c17d98eb190 100644 --- a/doc/lispref/backups.texi +++ b/doc/lispref/backups.texi | |||
| @@ -232,11 +232,11 @@ non-@code{nil}. | |||
| 232 | @defopt backup-by-copying-when-privileged-mismatch | 232 | @defopt backup-by-copying-when-privileged-mismatch |
| 233 | This variable, if non-@code{nil}, specifies the same behavior as | 233 | This variable, if non-@code{nil}, specifies the same behavior as |
| 234 | @code{backup-by-copying-when-mismatch}, but only for certain user-id | 234 | @code{backup-by-copying-when-mismatch}, but only for certain user-id |
| 235 | values: namely, those less than or equal to a certain number. You set | 235 | and group-id values: namely, those less than or equal to a certain number. |
| 236 | this variable to that number. | 236 | You set this variable to that number. |
| 237 | 237 | ||
| 238 | Thus, if you set @code{backup-by-copying-when-privileged-mismatch} | 238 | Thus, if you set @code{backup-by-copying-when-privileged-mismatch} |
| 239 | to 0, backup by copying is done for the superuser only, | 239 | to 0, backup by copying is done for the superuser and group 0 only, |
| 240 | when necessary to prevent a change in the owner of the file. | 240 | when necessary to prevent a change in the owner of the file. |
| 241 | 241 | ||
| 242 | The default is 200. | 242 | The default is 200. |