aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Hansen2004-06-23 14:38:19 +0000
committerLars Hansen2004-06-23 14:38:19 +0000
commit7dd11b370cf498d08f1f97c096b2c7911e20d44b (patch)
tree61290277db02ecabf4a8bf1b5e1cb8ce670de5fa
parenta3468351f6f3ccbc2fb9f4baea11720a5818df27 (diff)
downloademacs-7dd11b370cf498d08f1f97c096b2c7911e20d44b.tar.gz
emacs-7dd11b370cf498d08f1f97c096b2c7911e20d44b.zip
(write-contents-functions): Doc fix.
-rw-r--r--lisp/files.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/files.el b/lisp/files.el
index f96a5803b0b..cd11f07969f 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -393,7 +393,8 @@ updates before the buffer is saved, use `before-save-hook' .")
393(defvar write-contents-functions nil 393(defvar write-contents-functions nil
394 "List of functions to be called before writing out a buffer to a file. 394 "List of functions to be called before writing out a buffer to a file.
395If one of them returns non-nil, the file is considered already written 395If one of them returns non-nil, the file is considered already written
396and the rest are not called. 396and the rest are not called and neither are the functions in
397`write-file-functions'.
397 398
398This variable is meant to be used for hooks that pertain to the 399This variable is meant to be used for hooks that pertain to the
399buffer's contents, not to the particular visited file; thus, 400buffer's contents, not to the particular visited file; thus,