emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/emacs-23 r100078: Doc fix.


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-23 r100078: Doc fix.
Date: Sat, 02 Oct 2010 18:23:50 -0700
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 100078
committer: Glenn Morris <address@hidden>
branch nick: emacs-23
timestamp: Sat 2010-10-02 18:23:50 -0700
message:
  Doc fix.
  
  * src/buffer.c (before-change-functions, after-change-functions):
  Three-year overdue doc fix following 2007-08-13 change.
modified:
  src/ChangeLog
  src/buffer.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2010-10-02 01:44:50 +0000
+++ b/src/ChangeLog     2010-10-03 01:23:50 +0000
@@ -1,3 +1,8 @@
+2010-10-03  Glenn Morris  <address@hidden>
+
+       * buffer.c (before-change-functions, after-change-functions):
+       Three-year overdue doc fix following 2007-08-13 change.
+
 2010-10-02  Kenichi Handa  <address@hidden>
 
        * coding.c (coding_inherit_eol_type): If parent doesn't specify

=== modified file 'src/buffer.c'
--- a/src/buffer.c      2010-07-21 10:45:01 +0000
+++ b/src/buffer.c      2010-10-03 01:23:50 +0000
@@ -6096,10 +6096,7 @@
 
 Buffer changes made while executing the `before-change-functions'
 don't call any before-change or after-change functions.
-That's because these variables are temporarily set to nil.
-As a result, a hook function cannot straightforwardly alter the
-value of these variables.  See the Emacs Lisp manual for a way of
-accomplishing an equivalent result by using other variables.
+That's because `inhibit-modification-hooks' is temporarily set non-nil.
 
 If an unhandled error happens in running these functions,
 the variable's value remains nil.  That prevents the error
@@ -6117,10 +6114,7 @@
 
 Buffer changes made while executing the `after-change-functions'
 don't call any before-change or after-change functions.
-That's because these variables are temporarily set to nil.
-As a result, a hook function cannot straightforwardly alter the
-value of these variables.  See the Emacs Lisp manual for a way of
-accomplishing an equivalent result by using other variables.
+That's because `inhibit-modification-hooks' is temporarily set non-nil.
 
 If an unhandled error happens in running these functions,
 the variable's value remains nil.  That prevents the error


reply via email to

[Prev in Thread] Current Thread [Next in Thread]