aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/files.el5
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 192133a9420..915f169063a 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
12008-11-29 Juanma Barranquero <lekktu@gmail.com> 12008-11-29 Juanma Barranquero <lekktu@gmail.com>
2 2
3 * files.el (break-hardlink-on-save): Fix typo in docstring.
4 Add :version tag.
5
3 * emacs-lisp/re-builder.el (reb-mode-map): Fix typo in menu tooltip. 6 * emacs-lisp/re-builder.el (reb-mode-map): Fix typo in menu tooltip.
4 (reb-mode): Define with `define-derived-mode'. 7 (reb-mode): Define with `define-derived-mode'.
5 8
diff --git a/lisp/files.el b/lisp/files.el
index bbda5cf3b46..510b63133a0 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -251,7 +251,7 @@ See also: `break-hardlink-on-save'."
251 251
252(defcustom break-hardlink-on-save nil 252(defcustom break-hardlink-on-save nil
253 "Non-nil means when saving a file that exists under several names 253 "Non-nil means when saving a file that exists under several names
254(i.e., has multiple hardlinks), break the hardlink associated with 254\(i.e., has multiple hardlinks), break the hardlink associated with
255`buffer-file-name' and write to a new file, so that the other 255`buffer-file-name' and write to a new file, so that the other
256instances of the file are not affected by the save. 256instances of the file are not affected by the save.
257 257
@@ -264,7 +264,8 @@ hardlink-nonbreaking way.
264 264
265See also `backup-by-copying' and `backup-by-copying-when-linked'." 265See also `backup-by-copying' and `backup-by-copying-when-linked'."
266 :type 'boolean 266 :type 'boolean
267 :group 'files) 267 :group 'files
268 :version "23.1")
268 269
269(defcustom version-control nil 270(defcustom version-control nil
270 "Control use of version numbers for backup files. 271 "Control use of version numbers for backup files.