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 /src | |
| 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 'src')
| -rw-r--r-- | src/insdel.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/insdel.c b/src/insdel.c index 21acf0e61db..dfa1cc311ca 100644 --- a/src/insdel.c +++ b/src/insdel.c | |||
| @@ -2397,7 +2397,13 @@ This affects `before-change-functions' and `after-change-functions', | |||
| 2397 | as well as hooks attached to text properties and overlays. | 2397 | as well as hooks attached to text properties and overlays. |
| 2398 | Setting this variable non-nil also inhibits file locks and checks | 2398 | Setting this variable non-nil also inhibits file locks and checks |
| 2399 | whether files are locked by another Emacs session, as well as | 2399 | whether files are locked by another Emacs session, as well as |
| 2400 | handling of the active region per `select-active-regions'. */); | 2400 | handling of the active region per `select-active-regions'. |
| 2401 | |||
| 2402 | To delay change hooks during a series of changes, use | ||
| 2403 | `combine-change-calls' or `combine-after-change-calls' instead of | ||
| 2404 | binding this variable. | ||
| 2405 | |||
| 2406 | See also the info node `(elisp) Change Hooks'. */); | ||
| 2401 | inhibit_modification_hooks = 0; | 2407 | inhibit_modification_hooks = 0; |
| 2402 | DEFSYM (Qinhibit_modification_hooks, "inhibit-modification-hooks"); | 2408 | DEFSYM (Qinhibit_modification_hooks, "inhibit-modification-hooks"); |
| 2403 | 2409 | ||