diff options
| -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); |