GNU bug report logs -
#31636
27.0.50; lockfile syntax searchable from info manual
Previous Next
Reported by: Brady Trainor <mail <at> bradyt.com>
Date: Tue, 29 May 2018 07:43:01 UTC
Severity: normal
Found in version 27.0.50
Done: Robert Pluim <rpluim <at> gmail.com>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Brady Trainor <mail <at> bradyt.com> writes:
> I had hoped to find about files such as `/tmp/.#fileA` by searching in
> the info manual for ".#". But I did not find such a string there, nor
> via `apropos-documentation`.
>
> If a user encounters such a file in a directory, I think it would lead
> to good discoverability if a manual or docstring had some mention of the
> string ".#", so that one might search for it.
>
> I'm sending this report without having spent a lot of time on it now,
> not sure if this ".#" convention comes from outside of emacs.
We could add an index entry to the info manual. Adding a reference
inside the docstring of 'lock-buffer' would enable
'apropos-documentation' to find it as well.
This does mean that if the implementation of locking ever changes,
weʼd need to update those docs, but I donʼt think thereʼs much chance
of that.
Proposed patch (for emacs-26?)
[0001-Add-more-discoverable-documentation-for.patch (text/x-patch, inline)]
From 2655d523a8136365e00076e1162598913f58277c Mon Sep 17 00:00:00 2001
From: Robert Pluim <rpluim <at> gmail.com>
Date: Tue, 29 May 2018 10:19:16 +0200
Subject: [PATCH] Add more discoverable documentation for '.#'
To: emacs-devel <at> gnu.org
* doc/emacs/files.texi (Interlocking): Add index entry for '.#' and
mention its use in lockfile names.
* src/filelock.c (Flock_buffer): Mention '.#' string, add reference to
Interlocking info node.
---
doc/emacs/files.texi | 4 +++-
src/filelock.c | 4 +++-
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/doc/emacs/files.texi b/doc/emacs/files.texi
index 1ced7ca07c..f80ad5bbd7 100644
--- a/doc/emacs/files.texi
+++ b/doc/emacs/files.texi
@@ -766,9 +766,11 @@ Interlocking
@findex ask-user-about-lock
@cindex locking files
+@cindex .#
When you make the first modification in an Emacs buffer that is
visiting a file, Emacs records that the file is @dfn{locked} by you.
-(It does this by creating a specially-named symbolic link <at> footnote{If
+(It does this by creating a specially-named symbolic link, whose name
+currently contains the string @code{.#} @footnote{If
your file system does not support symbolic links, a regular file is
used.} with special contents in the same directory.) Emacs removes the lock
when you save the changes. The idea is that the file is locked
diff --git a/src/filelock.c b/src/filelock.c
index f2dc723407..d93adf8e81 100644
--- a/src/filelock.c
+++ b/src/filelock.c
@@ -773,7 +773,9 @@ DEFUN ("lock-buffer", Flock_buffer, Slock_buffer,
FILE defaults to current buffer's visited file,
or else nothing is done if current buffer isn't visiting a file.
-If the option `create-lockfiles' is nil, this does nothing. */)
+If the option `create-lockfiles' is nil, this does nothing.
+The name of the lockfile currently contains '.#', see
+Info node `(emacs)Interlocking' for more information. */)
(Lisp_Object file)
{
if (NILP (file))
--
2.17.0.775.ge144d126d7
This bug report was last modified 6 years and 360 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.