diff options
author | Karl Heuer <kwzh@gnu.org> | 1995-05-29 07:00:06 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1995-05-29 07:00:06 +0000 |
commit | c8502397cc6a0e0c4a35451a7994c75e726efe60 (patch) | |
tree | 6949a57e1ecb471e013d2f2be9903ea17c3e97a4 | |
parent | 800479f5fda5fd1454c08c70a12c150e053fce77 (diff) | |
download | emacs-c8502397cc6a0e0c4a35451a7994c75e726efe60.tar.gz |
(vc-revert-buffer1): Delete the special code for font-lock.
-rw-r--r-- | lisp/vc.el | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/lisp/vc.el b/lisp/vc.el index 1e32275122e..54f71fb0d93 100644 --- a/lisp/vc.el +++ b/lisp/vc.el @@ -374,16 +374,7 @@ with RCS)." (if buffer-error-marked-p buffer)))) (buffer-list))))))) - (let ((in-font-lock-mode (and (boundp 'font-lock-fontified) - font-lock-fontified))) - (if in-font-lock-mode - (font-lock-mode 0)) - - ;; the actual revisit - (revert-buffer arg no-confirm) - - (if in-font-lock-mode - (font-lock-mode 1))) + (revert-buffer arg no-confirm) ;; Reparse affected compilation buffers. (while reparse |