aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1996-05-07 00:51:23 +0000
committerRichard M. Stallman1996-05-07 00:51:23 +0000
commit67f445d78be2d3d3acbe3b4a6b963fadcc6daef5 (patch)
treedebf1eda73354c78a8f5f108affd4f2beb943465
parent33d5f42a5e418e959ce865dd44188e2e37e9ebfc (diff)
downloademacs-67f445d78be2d3d3acbe3b4a6b963fadcc6daef5.tar.gz
emacs-67f445d78be2d3d3acbe3b4a6b963fadcc6daef5.zip
(Info-enable-active-nodes): Default to nil. Mark it risky.
-rw-r--r--lisp/info.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/info.el b/lisp/info.el
index 4d6813aa504..ec783d1eacf 100644
--- a/lisp/info.el
+++ b/lisp/info.el
@@ -39,9 +39,10 @@ However, we recommend that you not do this.
39It is better to write a Texinfo file and generate the Info file from that, 39It is better to write a Texinfo file and generate the Info file from that,
40because that gives you a printed manual as well.") 40because that gives you a printed manual as well.")
41 41
42(defvar Info-enable-active-nodes t 42(defvar Info-enable-active-nodes nil
43 "Non-nil allows Info to execute Lisp code associated with nodes. 43 "Non-nil allows Info to execute Lisp code associated with nodes.
44The Lisp code is executed when the node is selected.") 44The Lisp code is executed when the node is selected.")
45(put 'Info-enable-active-nodes 'risky-local-variable t)
45 46
46(defvar Info-fontify t 47(defvar Info-fontify t
47 "*Non-nil enables highlighting and fonts in Info nodes.") 48 "*Non-nil enables highlighting and fonts in Info nodes.")