diff options
author | Luis Ontanon <luis.ontanon@gmail.com> | 2006-10-24 13:16:57 +0000 |
---|---|---|
committer | Luis Ontanon <luis.ontanon@gmail.com> | 2006-10-24 13:16:57 +0000 |
commit | 0072205e18ced7d44949f0137fd7d8ea9690033b (patch) | |
tree | 6a1704becdcb5831f2b3e0840b418123e609330c /epan/wslua/template-init.lua | |
parent | b9ee51743704692076662fc319e0c859b45f06a2 (diff) | |
download | wireshark-0072205e18ced7d44949f0137fd7d8ea9690033b.tar.gz wireshark-0072205e18ced7d44949f0137fd7d8ea9690033b.tar.bz2 wireshark-0072205e18ced7d44949f0137fd7d8ea9690033b.zip |
Have Lua disabled by default.
Add more documentation to the code.
change make-dco.pl so that it creates more readable docbook output.
This should be copied over to 0.99.4
svn path=/trunk/; revision=19670
Diffstat (limited to 'epan/wslua/template-init.lua')
-rw-r--r-- | epan/wslua/template-init.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/wslua/template-init.lua b/epan/wslua/template-init.lua index 6eae877f97..24dc4156e2 100644 --- a/epan/wslua/template-init.lua +++ b/epan/wslua/template-init.lua @@ -25,8 +25,8 @@ -- along with this program; if not, write to the Free Software -- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. --- If lua is to be completely disabled uncomment the following line. --- disable_lua = true; do return end; +-- Lua is disabled by default, comment out the following line to enable Lua support. +disable_lua = true; do return end; -- If set and we are running with special privileges this setting @@ -48,7 +48,7 @@ if running_superuser then file = disabled_lib end --- to avoid output to stdout which can caause problems lua's print () +-- to avoid output to stdout which can cause problems lua's print () -- has been suppresed so that it yields an error. -- have print() call info() instead. print = info |