# HG changeset patch # User Richard M. Stallman # Date 788394006 0 # Node ID 1ac3c8fea14a9e733805ebe0c2470495ef3813b2 # Parent 4aa245b5eb83d666ce8aef2569a13836567ee086 (font-lock-defaults): Add defvar. (buffer-file-type): Add defvar. diff -r 4aa245b5eb83 -r 1ac3c8fea14a lisp/subr.el --- a/lisp/subr.el Sun Dec 25 22:19:45 1994 +0000 +++ b/lisp/subr.el Sun Dec 25 22:20:06 1994 +0000 @@ -826,6 +826,18 @@ ;;;; Miscellanea. +;; A number of major modes set this locally. +;; Give it a global value to avoid compiler warnings. +(defvar font-lock-defaults nil) + +;; Avoid compiler warnings about this variable, +;; which has a special meaning on certain system types. +(defvar buffer-file-type nil + "Non-nil if the visited file is a binary file. +This variable is meaningful on MS-DOG and Windows NT. +On those systems, it is automatically local in every buffer. +On other systems, this variable is normally always nil.") + (defun ignore (&rest ignore) "Do nothing and return nil. This function accepts any number of arguments, but ignores them."