diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-05-07 00:51:23 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-05-07 00:51:23 +0000 |
commit | fba07e9bb9b99f25da983fad65b59aef6ec2e8d9 (patch) | |
tree | 1f7fc172c9f8a3479001cbae31fc6b537a75eae4 /lisp/info.el | |
parent | 9bddd5ca7e26ef0de78c16726fe497e15ca70bbf (diff) | |
download | emacs-fba07e9bb9b99f25da983fad65b59aef6ec2e8d9.tar.gz |
(Info-enable-active-nodes): Default to nil. Mark it risky.
Diffstat (limited to 'lisp/info.el')
-rw-r--r-- | lisp/info.el | 3 |
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. It is better to write a Texinfo file and generate the Info file from that, because that gives you a printed manual as well.") -(defvar Info-enable-active-nodes t +(defvar Info-enable-active-nodes nil "Non-nil allows Info to execute Lisp code associated with nodes. The Lisp code is executed when the node is selected.") +(put 'Info-enable-active-nodes 'risky-local-variable t) (defvar Info-fontify t "*Non-nil enables highlighting and fonts in Info nodes.") |