GNU bug report logs -
#65598
Lock-file link target uses obsolete system-name variable
Previous Next
Full log
View this message in rfc822 format
The variable system-name is obsoleted in favor of the (system-name) function. But the lock file symlink target generated when file locks are enabled still uses the value of the variable, not the function.
This is important when you need to override the name of the system. In my situation this is because (system-name) is dynamically updated as my laptop is attached to different networks (host.local, host.some.fqdn, etc.), leading to spurious "~/tmp/file locked by …” prompts as I move around.
I can easily fix this like:
(setq system-name ; to prevent spurious locks as (system-name) changes
(replace-regexp-in-string (rx ?. (* any) eos) "" (system-name)))
but that utilizes the obsolete variable. Either un-obsoleting this variable, or having the internal file-lock code call (system-name), so it can be overridden with advice, is a suggested solution.
See also #19438.
This bug report was last modified 1 year and 291 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.