# HG changeset patch # User Stefan Monnier # Date 1107404901 0 # Node ID 83af8894e534d8489f6952db14ba878a1742edd3 # Parent d19236272855d5197ad21b0ac069fb776c12e7d1 (font-lock-default-function): Handle the rare case where only font-lock-keywords is set. diff -r d19236272855 -r 83af8894e534 lisp/ChangeLog --- a/lisp/ChangeLog Thu Feb 03 03:56:00 2005 +0000 +++ b/lisp/ChangeLog Thu Feb 03 04:28:21 2005 +0000 @@ -1,6 +1,11 @@ +2005-02-02 Stefan Monnier + + * font-core.el (font-lock-default-function): Handle the rare case where + only font-lock-keywords is set. + 2005-02-03 Kenichi Handa - * international/characters.el: Cancel previous change. for + * international/characters.el: Cancel previous change for I-WITH-DOT-ABOVE and DOTLESS-i. * international/latin-5.el: Cancel previous change. diff -r d19236272855 -r 83af8894e534 lisp/font-core.el --- a/lisp/font-core.el Thu Feb 03 03:56:00 2005 +0000 +++ b/lisp/font-core.el Thu Feb 03 04:28:21 2005 +0000 @@ -1,7 +1,7 @@ ;;; font-core.el --- Core interface to font-lock -;; Copyright (C) 1992, 93, 94, 95, 96, 97, 98, 1999, 2000, 2001, 02, 2003 -;; Free Software Foundation, Inc. +;; Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, +;; 2002, 2003, 2005 Free Software Foundation, Inc. ;; Maintainer: FSF ;; Keywords: languages, faces @@ -202,6 +202,7 @@ ;; Only do hard work if the mode has specified stuff in ;; `font-lock-defaults'. (when (or font-lock-defaults + (and (boundp 'font-lock-keywords) font-lock-keywords) (cdr (assq major-mode font-lock-defaults-alist))) (font-lock-mode-internal mode))) @@ -295,6 +296,5 @@ (provide 'font-core) +;; arch-tag: f8c286e1-02f7-41d9-b89b-1b67780aed71 ;;; font-core.el ends here - -;;; arch-tag: f8c286e1-02f7-41d9-b89b-1b67780aed71