diff options
| author | Stefan Monnier | 2001-10-08 22:33:43 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2001-10-08 22:33:43 +0000 |
| commit | 166253cb39ccddfdd1621b4ec4864685302a8a0a (patch) | |
| tree | 0df1ac94535264bf2a4745807c49289a9547d8ce /src | |
| parent | 3b8c60f18cbdbb5eb571c7fe1588c43542d88b17 (diff) | |
| download | emacs-166253cb39ccddfdd1621b4ec4864685302a8a0a.tar.gz emacs-166253cb39ccddfdd1621b4ec4864685302a8a0a.zip | |
(handle_fontified_prop): Don't bind after-change-functions.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/xdisp.c | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 44fdddcf5b9..978f7ee5a83 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2001-10-08 Stefan Monnier <monnier@cs.yale.edu> | ||
| 2 | |||
| 3 | * xdisp.c (handle_fontified_prop): Don't bind after-change-functions. | ||
| 4 | |||
| 1 | 2001-10-08 Sam Steingold <sds@gnu.org> | 5 | 2001-10-08 Sam Steingold <sds@gnu.org> |
| 2 | 6 | ||
| 3 | * keymap.c (current-active-maps): Quote newlines (compilation error). | 7 | * keymap.c (current-active-maps): Quote newlines (compilation error). |
diff --git a/src/xdisp.c b/src/xdisp.c index cb092ccfe00..f1006578c5a 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -2203,7 +2203,6 @@ handle_fontified_prop (it) | |||
| 2203 | 2203 | ||
| 2204 | val = Vfontification_functions; | 2204 | val = Vfontification_functions; |
| 2205 | specbind (Qfontification_functions, Qnil); | 2205 | specbind (Qfontification_functions, Qnil); |
| 2206 | specbind (Qafter_change_functions, Qnil); | ||
| 2207 | 2206 | ||
| 2208 | if (!CONSP (val) || EQ (XCAR (val), Qlambda)) | 2207 | if (!CONSP (val) || EQ (XCAR (val), Qlambda)) |
| 2209 | safe_call1 (val, pos); | 2208 | safe_call1 (val, pos); |