]> git.eshelyaron.com Git - emacs.git/commitdiff
Document revert-buffer-in-progress-p
authorGlenn Morris <rgm@gnu.org>
Sat, 4 Feb 2012 22:04:12 +0000 (14:04 -0800)
committerGlenn Morris <rgm@gnu.org>
Sat, 4 Feb 2012 22:04:12 +0000 (14:04 -0800)
* doc/lispref/backups.texi (Reverting): Mention revert-buffer-in-progress-p.
* lisp/files.el (revert-buffer): Doc fix (mention revert-buffer-in-progress-p).
* etc/NEWS: Related markup.

doc/lispref/ChangeLog
doc/lispref/backups.texi
etc/NEWS
lisp/ChangeLog
lisp/files.el

index 459ccf633729caafbbca0a5d5503d75a427171a0..681b9b54678504e477585f152f3bbc2d400fe7e4 100644 (file)
@@ -1,5 +1,7 @@
 2012-02-04  Glenn Morris  <rgm@gnu.org>
 
+       * backups.texi (Reverting): Mention revert-buffer-in-progress-p.
+
        * debugging.texi (Error Debugging): Mention debug-on-event.
        * commands.texi (Misc Events): Mention sigusr1,2 and debugging.
 
index 969220845d0a25b8c7f6d094dec0ebe40b1e2f44..a4b3a0b9bef954d79f4c628cd9d6e405c48d4a67 100644 (file)
@@ -696,6 +696,9 @@ operation, reverting preserves all the markers.  If they are not
 identical, reverting does change the buffer; in that case, it preserves
 the markers in the unchanged text (if any) at the beginning and end of
 the buffer.  Preserving any additional markers would be problematical.
+
+This command binds @code{revert-buffer-in-progress-p} to a
+non-@code{nil} value while it operates.
 @end deffn
 
 You can customize how @code{revert-buffer} does its work by setting
index 67073cb1acf19d01eb3d2b95c5a837a91164ac5d..3f84f394b146cd4f46cf3fa7a7930fa2a204da1b 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1388,6 +1388,7 @@ time you call `progress-reporter-update' on that progress reporter,
 with a nil or omitted VALUE argument, the reporter message is
 displayed with a "spinning bar".
 
++++
 ** New variable `revert-buffer-in-progress-p' is true while a buffer is
 being reverted, even if the buffer has a local `revert-buffer-function'.
 
index 24fb682235c81bc48d7348d96f06881699e737fa..198b7c53322ea64ad0102e0e95e273ebea39a9c8 100644 (file)
@@ -1,5 +1,8 @@
 2012-02-04  Glenn Morris  <rgm@gnu.org>
 
+       * files.el (revert-buffer):
+       Doc fix (mention revert-buffer-in-progress-p).
+
        * emacs-lisp/ert-x.el (ert-simulate-command):
        Check deferred-action-list (which is obsolete) is bound.
 
index ac50e9f0a6ead73e17702f7afd1187ee32b93b90..8a65bc5f81f5caae9617d436c19e74c58870f6d0 100644 (file)
@@ -5131,6 +5131,8 @@ revert buffers without querying for confirmation.)
 Optional third argument PRESERVE-MODES non-nil means don't alter
 the files modes.  Normally we reinitialize them using `normal-mode'.
 
+This function binds `revert-buffer-in-progress-p' non-nil while it operates.
+
 If the value of `revert-buffer-function' is non-nil, it is called to
 do all the work for this command.  Otherwise, the hooks
 `before-revert-hook' and `after-revert-hook' are run at the beginning