aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1993-08-10 04:18:52 +0000
committerRichard M. Stallman1993-08-10 04:18:52 +0000
commit82871877e2c8f86f2415092295002dbaabb69f74 (patch)
tree1bc195170906797d50554bf35a8f603f31153f78
parente4b052bfbe5565534fb717f244f169f0e012e662 (diff)
downloademacs-82871877e2c8f86f2415092295002dbaabb69f74.tar.gz
emacs-82871877e2c8f86f2415092295002dbaabb69f74.zip
Added section on local variables.
-rw-r--r--lisp/tpu-doc.el9
1 files changed, 7 insertions, 2 deletions
diff --git a/lisp/tpu-doc.el b/lisp/tpu-doc.el
index c5a9cc8bbd9..c65d0aa635a 100644
--- a/lisp/tpu-doc.el
+++ b/lisp/tpu-doc.el
@@ -1,4 +1,5 @@
1;;; tpu-doc.el --- Documentation for TPU-edt 1;;; tpu-doc.el --- Documentation for TPU-edt
2
2;; Copyright (C) 1993 Free Software Foundation, Inc. 3;; Copyright (C) 1993 Free Software Foundation, Inc.
3 4
4;; Author: Rob Riepel <riepel@networking.stanford.edu> 5;; Author: Rob Riepel <riepel@networking.stanford.edu>
@@ -21,8 +22,7 @@
21;; along with GNU Emacs; see the file COPYING. If not, write to 22;; along with GNU Emacs; see the file COPYING. If not, write to
22;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 23;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
23 24
24;;; Revision: $Id: tpu-doc.el,v 1.2 1993/08/04 08:18:28 rms Exp rms $ 25(defconst tpu-doc-revision "$Revision: 1.3 $"
25(defconst tpu-doc-revision "$Revision: 1.2 $"
26 "TPU-edt documentation revision number.") 26 "TPU-edt documentation revision number.")
27 27
28 28
@@ -312,6 +312,11 @@
312;; hate that! This line will make sure that files end with newlines. 312;; hate that! This line will make sure that files end with newlines.
313(setq require-final-newline t) 313(setq require-final-newline t)
314 314
315;; Emacs has the ability to automatically run code embedded in files
316;; you edit. This line makes emacs ask if you want to run the code.
317(if tpu-emacs19-p (setq enable-local-variables "ask")
318 (setq inhibit-local-variables t))
319
315;; Emacs uses Control-s and Control-q. Problems can occur when using emacs 320;; Emacs uses Control-s and Control-q. Problems can occur when using emacs
316;; on terminals that use these codes for flow control (Xon/Xoff flow control). 321;; on terminals that use these codes for flow control (Xon/Xoff flow control).
317;; These lines disable emacs' use of these characters. 322;; These lines disable emacs' use of these characters.