As with emacs 24.3, you can disable the lock files using the "create-lockfiles" option in the Emacs configuration system or by directly setting the create-lockfiles variable to nil:
(setq create-lockfiles nil)
In previous versions of Emacs, itβs not possible to disable this feature through customization. You can crack the C code to prevent links from appearing. But this is probably more work than you want.
The links here are for locking files so that Emacs can recognize when someone else is editing the file. See the documentation here and here .
source share