]> git.eshelyaron.com Git - emacs.git/commitdiff
* files.el (break-hardlink-on-save): Doc fix.
authorChong Yidong <cyd@gnu.org>
Tue, 17 Dec 2013 15:09:13 +0000 (23:09 +0800)
committerChong Yidong <cyd@gnu.org>
Tue, 17 Dec 2013 15:09:13 +0000 (23:09 +0800)
Suggested by Xue Fuqiao.

Fixes: debbugs:13801
lisp/ChangeLog
lisp/files.el

index 9a424b239c24f24c4623463af3a99e75dcf10464..728405eeb2e4f047e0bd70ebb5bc072975211d6f 100644 (file)
@@ -1,3 +1,8 @@
+2013-12-17  Chong Yidong  <cyd@gnu.org>
+
+       * files.el (break-hardlink-on-save): Doc fix (Bug#13801).
+       Suggested by Xue Fuqiao.
+
 2013-12-17  Dmitry Gutov  <dgutov@yandex.ru>
 
        * progmodes/ruby-mode.el (ruby-smie-rules): Indent ternary if.
index 229770006c731045c04b7a2ff0f2c3ffb61e7ab6..b864b6e4c5762ada4ad3cf19194859b610fb79f0 100644 (file)
@@ -248,10 +248,12 @@ See also: `break-hardlink-on-save'."
   :group 'backup)
 
 (defcustom break-hardlink-on-save nil
-  "Non-nil means when saving a file that exists under several names
-\(i.e., has multiple hardlinks), break the hardlink associated with
-`buffer-file-name' and write to a new file, so that the other
-instances of the file are not affected by the save.
+  "Whether to allow breaking hardlinks when saving files.
+If non-nil, then when saving a file that exists under several
+names \(i.e., has multiple hardlinks), break the hardlink
+associated with `buffer-file-name' and write to a new file, so
+that the other instances of the file are not affected by the
+save.
 
 If `buffer-file-name' refers to a symlink, do not break the symlink.