[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/font-core.el
From: |
Richard M. Stallman |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/font-core.el |
Date: |
Tue, 20 Aug 2002 13:22:31 -0400 |
Index: emacs/lisp/font-core.el
diff -c emacs/lisp/font-core.el:1.12 emacs/lisp/font-core.el:1.13
*** emacs/lisp/font-core.el:1.12 Sun Aug 18 20:54:48 2002
--- emacs/lisp/font-core.el Tue Aug 20 13:22:30 2002
***************
*** 25,30 ****
--- 25,33 ----
;;; Code:
+ (defvar font-lock-maximum-size)
+ (defvar font-lock-verbose)
+
;; This variable is used by mode packages that support Font Lock mode by
;; defining their own keywords to use for `font-lock-keywords'. (The mode
;; command should make it buffer-local and set it to provide the set up.)
***************
*** 209,216 ****
(funcall font-lock-function font-lock-mode)
;; Arrange to unfontify this buffer if we change major mode later.
(if font-lock-mode
! (add-hook 'change-major-mode-hook 'font-lock-unfontify-buffer nil t)
! (remove-hook 'change-major-mode-hook 'font-lock-unfontify-buffer t)))
(defun font-lock-default-function (font-lock-mode)
;; Turn on Font Lock mode.
--- 212,230 ----
(funcall font-lock-function font-lock-mode)
;; Arrange to unfontify this buffer if we change major mode later.
(if font-lock-mode
! (add-hook 'change-major-mode-hook 'font-lock-change-mode nil t)
! (remove-hook 'change-major-mode-hook 'font-lock-change-mode t)))
!
! ;; Get rid of fontification for the old major mode.
! ;; We do this when changing major modes.
! (defun font-lock-change-mode ()
! (let ((inhibit-read-only t))
! (save-restriction
! (widen)
! (remove-list-of-text-properties
! (point-min) (point-max) '(font-lock-face))))
! (when font-lock-defaults
! (font-lock-unfontify-buffer)))
(defun font-lock-default-function (font-lock-mode)
;; Turn on Font Lock mode.
- [Emacs-diffs] Changes to emacs/lisp/font-core.el, John Paul Wallington, 2002/08/09
- [Emacs-diffs] Changes to emacs/lisp/font-core.el, Stefan Monnier, 2002/08/14
- [Emacs-diffs] Changes to emacs/lisp/font-core.el, Richard M. Stallman, 2002/08/15
- [Emacs-diffs] Changes to emacs/lisp/font-core.el, Richard M. Stallman, 2002/08/18
- [Emacs-diffs] Changes to emacs/lisp/font-core.el,
Richard M. Stallman <=
- [Emacs-diffs] Changes to emacs/lisp/font-core.el, Juanma Barranquero, 2002/08/30
- [Emacs-diffs] Changes to emacs/lisp/font-core.el, Andreas Schwab, 2002/08/31