diff options
author | Glenn Morris <rgm@gnu.org> | 2014-06-07 17:59:05 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2014-06-07 17:59:05 -0700 |
commit | 6cbdfa0115a57bae3dda291a146d51402e9bf6fc (patch) | |
tree | 3783c1779c2ab85800c6922de79299018302335d | |
parent | 7b385b020102826e6f1cdd0dd9a8ec6c9b23236c (diff) | |
download | emacs-6cbdfa0115a57bae3dda291a146d51402e9bf6fc.tar.gz emacs-6cbdfa0115a57bae3dda291a146d51402e9bf6fc.tar.bz2 emacs-6cbdfa0115a57bae3dda291a146d51402e9bf6fc.zip |
* src/fileio.c (write-region-inhibit-fsync): Doc tweak.
-rw-r--r-- | src/ChangeLog | 2 | ||||
-rw-r--r-- | src/fileio.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 7f963fe7ba9..f7ee48d1d07 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,7 @@ 2014-06-08 Glenn Morris <rgm@gnu.org> + * fileio.c (write-region-inhibit-fsync): Doc tweak. + * data.c (Flss, Fgtr, Fleq, Fgeq): Doc tweaks. 2014-06-04 Eli Zaretskii <eliz@gnu.org> diff --git a/src/fileio.c b/src/fileio.c index 3b7961b930a..cd32821ed0c 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -6043,7 +6043,7 @@ file is usually more useful if it contains the deleted text. */); doc: /* Non-nil means don't call fsync in `write-region'. This variable affects calls to `write-region' as well as save commands. Setting this to nil may avoid data loss if the system loses power or -the operating system crashes. */); +the operating system crashes. By default, it is non-nil in batch mode. */); write_region_inhibit_fsync = 0; /* See also `init_fileio' above. */ DEFVAR_BOOL ("delete-by-moving-to-trash", delete_by_moving_to_trash, |