changeset 4526:a614db8afa56

Added section on local variables.
author Richard M. Stallman <rms@gnu.org>
date Tue, 10 Aug 1993 04:18:52 +0000
parents 03d1a39e66c9
children 3a3993b99ea8
files lisp/=tpu-doc.el
diffstat 1 files changed, 7 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/=tpu-doc.el	Tue Aug 10 04:18:28 1993 +0000
+++ b/lisp/=tpu-doc.el	Tue Aug 10 04:18:52 1993 +0000
@@ -1,4 +1,5 @@
 ;;; tpu-doc.el --- Documentation for TPU-edt
+
 ;; Copyright (C) 1993 Free Software Foundation, Inc.
 
 ;; Author: Rob Riepel <riepel@networking.stanford.edu>
@@ -21,8 +22,7 @@
 ;; along with GNU Emacs; see the file COPYING.  If not, write to
 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
 
-;;; Revision: $Id: tpu-doc.el,v 1.2 1993/08/04 08:18:28 rms Exp rms $
-(defconst tpu-doc-revision "$Revision: 1.2 $"
+(defconst tpu-doc-revision "$Revision: 1.3 $"
   "TPU-edt documentation revision number.")
 
 
@@ -312,6 +312,11 @@
 ;; hate that!  This line will make sure that files end with newlines.
 (setq require-final-newline t)
 
+;; Emacs has the ability to automatically run code embedded in files
+;; you edit.  This line makes emacs ask if you want to run the code.
+(if tpu-emacs19-p (setq enable-local-variables "ask")
+  (setq inhibit-local-variables t))
+
 ;; Emacs uses Control-s and Control-q.  Problems can occur when using emacs
 ;; on terminals that use these codes for flow control (Xon/Xoff flow control).
 ;; These lines disable emacs' use of these characters.