diff options
| author | Yuuki Harano | 2021-01-20 21:46:03 +0900 |
|---|---|---|
| committer | Yuuki Harano | 2021-01-20 21:46:03 +0900 |
| commit | bebc657aad7c9b448a8e0cafd9d09d7774097975 (patch) | |
| tree | 41869bfa2dcdbfdfefedb84be3ee2b05037372fc /src/buffer.c | |
| parent | 7326982d283abe7545d5f5742ea2b57e513fd285 (diff) | |
| parent | 8b33b76eb9fbb857bccbe3d223c961c486e4e8f9 (diff) | |
| download | emacs-bebc657aad7c9b448a8e0cafd9d09d7774097975.tar.gz emacs-bebc657aad7c9b448a8e0cafd9d09d7774097975.zip | |
Merge branch 'master' of git.sv.gnu.org:/srv/git/emacs into feature/pgtk
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buffer.c b/src/buffer.c index 71ad5edd527..80c799e719b 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -4785,7 +4785,7 @@ mmap_init (void) | |||
| 4785 | if (mmap_fd <= 0) | 4785 | if (mmap_fd <= 0) |
| 4786 | { | 4786 | { |
| 4787 | /* No anonymous mmap -- we need the file descriptor. */ | 4787 | /* No anonymous mmap -- we need the file descriptor. */ |
| 4788 | mmap_fd = emacs_open ("/dev/zero", O_RDONLY, 0); | 4788 | mmap_fd = emacs_open_noquit ("/dev/zero", O_RDONLY, 0); |
| 4789 | if (mmap_fd == -1) | 4789 | if (mmap_fd == -1) |
| 4790 | fatal ("Cannot open /dev/zero: %s", emacs_strerror (errno)); | 4790 | fatal ("Cannot open /dev/zero: %s", emacs_strerror (errno)); |
| 4791 | } | 4791 | } |