diff libinterp/corefcn/help.cc @ 25336:389757b7b6af

eliminate redundant octave:: namespace tags * documentation-dock-widget.cc, documentation-dock-widget.h, documentation.cc, files-dock-widget.cc, file-editor-tab.cc, file-editor.cc, octave-cmd.cc, webinfo.cc, resource-manager.cc, environment.cc, ft-text-renderer.cc, gl2ps-print.cc, gtk-manager.cc, help.cc, oct-stream.cc, sighandlers.cc, symtab.cc, bp-table.cc, comment-list.h, jit-typeinfo.cc, oct-parse.in.yy, pt-cbinop.cc, pt-eval.cc, pt-idx.cc, pt-jit.cc, cmd-edit.cc: Eliminate octave:: namespace tags inside octave namespace. Style fixes.
author John W. Eaton <jwe@octave.org>
date Wed, 02 May 2018 00:30:00 -0400
parents 078b795c5219
children f241f62c9fc5
line wrap: on
line diff
--- a/libinterp/corefcn/help.cc	Mon Apr 30 13:42:48 2018 -0700
+++ b/libinterp/corefcn/help.cc	Wed May 02 00:30:00 2018 -0400
@@ -551,7 +551,7 @@
   {
     bool retval = false;
 
-    h = octave::get_help_from_file (nm, symbol_found, file);
+    h = get_help_from_file (nm, symbol_found, file);
 
     if (h.length () > 0)
       retval = true;
@@ -690,8 +690,7 @@
 
   string_vector make_name_list (void)
   {
-    octave::help_system& help_sys
-      = octave::__get_help_system__ ("make_name_list");
+    help_system& help_sys = __get_help_system__ ("make_name_list");
 
     return help_sys.make_name_list ();
   }