diff options
| author | Glenn Morris | 2020-04-13 09:02:29 -0700 |
|---|---|---|
| committer | Glenn Morris | 2020-04-13 09:02:29 -0700 |
| commit | cdbb37f628aad1455af349d703c5838827bea8b3 (patch) | |
| tree | d31dd84f74181a54ae0ebb2c1384ba5be0a6a112 /doc | |
| parent | 584ff8c2dcfb330a0580ff280dd4554e556a2846 (diff) | |
| parent | f84aed5fd233d59196d942acfb67bb4051c69cf1 (diff) | |
| download | emacs-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.texi | 7 |
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 | |||
| 5776 | may cause recursive calls to the modification hooks, so be sure to | 5776 | may cause recursive calls to the modification hooks, so be sure to |
| 5777 | prepare for that (for example, by binding some variable which tells | 5777 | prepare for that (for example, by binding some variable which tells |
| 5778 | your hook to do nothing). | 5778 | your hook to do nothing). |
| 5779 | |||
| 5780 | We recommend that you only bind this variable for modifications that | ||
| 5781 | do not result in lasting changes to buffer text contents (for example | ||
| 5782 | face changes or temporary modifications). If you need to delay change | ||
| 5783 | hooks during a series of changes (typically for performance reasons), | ||
| 5784 | use @code{combine-change-calls} or @code{combine-after-change-calls} | ||
| 5785 | instead. | ||
| 5779 | @end defvar | 5786 | @end defvar |