aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorGlenn Morris2020-04-13 09:02:29 -0700
committerGlenn Morris2020-04-13 09:02:29 -0700
commitcdbb37f628aad1455af349d703c5838827bea8b3 (patch)
treed31dd84f74181a54ae0ebb2c1384ba5be0a6a112 /doc
parent584ff8c2dcfb330a0580ff280dd4554e556a2846 (diff)
parentf84aed5fd233d59196d942acfb67bb4051c69cf1 (diff)
downloademacs-cdbb37f628aad1455af349d703c5838827bea8b3.tar.gz
emacs-cdbb37f628aad1455af349d703c5838827bea8b3.zip
Merge from origin/emacs-27
f84aed5fd2 (origin/emacs-27) Clarify documentation on inhibit-modific...
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/text.texi7
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/lispref/text.texi b/doc/lispref/text.texi
index f027cdf8ede..ffdf952b081 100644
--- a/doc/lispref/text.texi
+++ b/doc/lispref/text.texi
@@ -5776,4 +5776,11 @@ code that is itself run from a modification hook, then rebind locally
5776may cause recursive calls to the modification hooks, so be sure to 5776may cause recursive calls to the modification hooks, so be sure to
5777prepare for that (for example, by binding some variable which tells 5777prepare for that (for example, by binding some variable which tells
5778your hook to do nothing). 5778your hook to do nothing).
5779
5780We recommend that you only bind this variable for modifications that
5781do not result in lasting changes to buffer text contents (for example
5782face changes or temporary modifications). If you need to delay change
5783hooks during a series of changes (typically for performance reasons),
5784use @code{combine-change-calls} or @code{combine-after-change-calls}
5785instead.
5779@end defvar 5786@end defvar