diff options
| author | Glenn Morris | 2018-06-02 10:29:37 -0700 |
|---|---|---|
| committer | Glenn Morris | 2018-06-02 10:29:37 -0700 |
| commit | 02c7d45d490dd28a1c4effa928f9a8b9373149b0 (patch) | |
| tree | 670652f24cf21779b201e11a55ebce64158fb39c /src | |
| parent | 0aaf14a441041fa8b5810ae0eec624011b53bb4c (diff) | |
| parent | 90bea37d466f47a65f3790b4bc46b11af9a4a27a (diff) | |
| download | emacs-02c7d45d490dd28a1c4effa928f9a8b9373149b0.tar.gz emacs-02c7d45d490dd28a1c4effa928f9a8b9373149b0.zip | |
Merge from origin/emacs-26
90bea37 ; * etc/PROBLEMS: Fix fvwm version number in last commit
af82d1f * etc/PROBLEMS: Document stickyness problem with FVWM (Bug#31...
4a3aed2 Update Emacs Lisp Intro to match current behavior
21f2247 Merge branch 'emacs-26' of git.savannah.gnu.org:/srv/git/emac...
3257085 Fix previous commit
6d23525 Fix typos in several manuals (Bug#31610)
9188291 Add detailed documentation about lock files
e5471b2 Add commentary for subtle aspect of frame.el
Conflicts:
doc/lispintro/emacs-lisp-intro.texi
Diffstat (limited to 'src')
| -rw-r--r-- | src/filelock.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/filelock.c b/src/filelock.c index f2dc7234076..d33063c8790 100644 --- a/src/filelock.c +++ b/src/filelock.c | |||
| @@ -849,7 +849,10 @@ syms_of_filelock (void) | |||
| 849 | Vtemporary_file_directory = Qnil; | 849 | Vtemporary_file_directory = Qnil; |
| 850 | 850 | ||
| 851 | DEFVAR_BOOL ("create-lockfiles", create_lockfiles, | 851 | DEFVAR_BOOL ("create-lockfiles", create_lockfiles, |
| 852 | doc: /* Non-nil means use lockfiles to avoid editing collisions. */); | 852 | doc: /* Non-nil means use lockfiles to avoid editing collisions. |
| 853 | The name of the (per-buffer) lockfile is constructed by prepending a | ||
| 854 | '.#' to the name of the file being locked. See also `lock-buffer' and | ||
| 855 | Info node `(emacs)Interlocking'. */); | ||
| 853 | create_lockfiles = 1; | 856 | create_lockfiles = 1; |
| 854 | 857 | ||
| 855 | defsubr (&Sunlock_buffer); | 858 | defsubr (&Sunlock_buffer); |