From 0d05b2a2d1f0330b03e4b116cc6378346be85b28 Mon Sep 17 00:00:00 2001 From: Karl Wette Date: Wed, 5 Jun 2013 20:31:39 +0200 Subject: [PATCH] Octave: make texinfo strings static (internal linkage) --- Source/Modules/octave.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Modules/octave.cxx b/Source/Modules/octave.cxx index bf2552a30..35ebc9ad4 100644 --- a/Source/Modules/octave.cxx +++ b/Source/Modules/octave.cxx @@ -288,7 +288,7 @@ public: String *escaped_doc_str = texinfo_escape(doc_str); if (Len(doc_str)>0) { - Printf(f_doc,"const char* %s_texinfo = ",wrap_name); + Printf(f_doc,"static const char* %s_texinfo = ",wrap_name); Printf(f_doc,"\"-*- texinfo -*-\\n\\\n%s", escaped_doc_str); if (Len(decl_info)) Printf(f_doc,"\\n\\\n@end deftypefn");