Mercurial > emacs
changeset 10254:1ac3c8fea14a
(font-lock-defaults): Add defvar.
(buffer-file-type): Add defvar.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 25 Dec 1994 22:20:06 +0000 |
parents | 4aa245b5eb83 |
children | d4119f1137f9 |
files | lisp/subr.el |
diffstat | 1 files changed, 12 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- 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."