comparison lisp/font-lock.el @ 9350:85b9cce28fd3

Delete the error when no window system.
author Richard M. Stallman <rms@gnu.org>
date Thu, 06 Oct 1994 02:45:40 +0000
parents a465b1335c0b
children fec6bd86e836
comparison
equal deleted inserted replaced
9349:444f99f9695e 9350:85b9cce28fd3
51 ;; substantially by removing some of the patterns that are highlighted by 51 ;; substantially by removing some of the patterns that are highlighted by
52 ;; default. Fontifying Lisp code is significantly faster, because Lisp has a 52 ;; default. Fontifying Lisp code is significantly faster, because Lisp has a
53 ;; more regular syntax than C, so the expressions don't have to be as hairy. 53 ;; more regular syntax than C, so the expressions don't have to be as hairy.
54 54
55 ;;; Code: 55 ;;; Code:
56
57 (or window-system
58 (error "Can't fontify on an ASCII terminal"))
59 56
60 (defvar font-lock-comment-face 57 (defvar font-lock-comment-face
61 'italic 58 'italic
62 "Face to use for comments.") 59 "Face to use for comments.")
63 60