Path: utzoo!utgpu!news-server.csri.toronto.edu!clyde.concordia.ca!uunet!cs.utexas.edu!sun-barr!rutgers!aramis.rutgers.edu!paul.rutgers.edu!gaynor From: gaynor@paul.rutgers.edu (Silver) Newsgroups: comp.emacs Subject: Re: buffer local variables Message-ID: Date: 14 Oct 90 07:45:27 GMT References: <9010111810.AA09690@wheat-chex> Distribution: gnu Organization: Rutgers Univ., New Brunswick, N.J. Lines: 8 I can't think of any better ways offhand than simply looking up the variable in the buffer's local variables... Regards, [Ag] _______________________________________________________________________________ (defun variable-buffer-local-p (v &optional b) "Return t if VARIABLE is buffer-local, nil otherwise. Optional BUFFER is the buffer in which to look." (and (assoc v (buffer-local-variables b)) t))