home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / octave-1.1.1p1-src.tgz / tar.out / fsf / octave / scripts / miscellaneous / dump_prefs.m < prev    next >
Text File  |  1996-09-28  |  3KB  |  73 lines

  1. # Copyright (C) 1994, 1995 John W. Eaton
  2. # This file is part of Octave.
  3. # Octave is free software; you can redistribute it and/or modify it
  4. # under the terms of the GNU General Public License as published by the
  5. # Free Software Foundation; either version 2, or (at your option) any
  6. # later version.
  7. # Octave is distributed in the hope that it will be useful, but WITHOUT
  8. # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  9. # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  10. # for more details.
  11. # You should have received a copy of the GNU General Public License
  12. # along with Octave; see the file COPYING.  If not, write to the Free
  13. # Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  14.  
  15. function dump_prefs (file)
  16.  
  17. # usage: dump_prefs (file)
  18. #
  19. # Have Octave dump all the current user preference variables to FILE
  20. # in a format that can be parsed by Octave later.  If FILE is omitted,
  21. # the listing is printed to stdout.
  22.  
  23.   if (nargin == 0)
  24.     file = stdout;
  25.   endif
  26.  
  27. # XXX FIXME XXX -- vectors of strings would be really useful here...
  28. # XXX FIXME XXX -- maybe this should be a built-in function so that we
  29. # wouldn't have to remember to update it each time the list of
  30. # preference variables changes
  31.  
  32.   dump_1_pref (file, "EDITOR");
  33.   dump_1_pref (file, "IMAGEPATH");
  34.   dump_1_pref (file, "INFO_FILE");
  35.   dump_1_pref (file, "LOADPATH");
  36.   dump_1_pref (file, "OCTAVE_VERSION");
  37.   dump_1_pref (file, "PAGER");
  38.   dump_1_pref (file, "PS1");
  39.   dump_1_pref (file, "PS2");
  40.   dump_1_pref (file, "automatic_replot");
  41.   dump_1_pref (file, "whitespace_in_literal_matrix");
  42.   dump_1_pref (file, "default_save_format");
  43.   dump_1_pref (file, "do_fortran_indexing");
  44.   dump_1_pref (file, "empty_list_elements_ok");
  45.   dump_1_pref (file, "eps");
  46.   dump_1_pref (file, "gnuplot_binary");
  47.   dump_1_pref (file, "ignore_function_time_stamp");
  48.   dump_1_pref (file, "implicit_str_to_num_ok");
  49.   dump_1_pref (file, "ok_to_lose_imaginary_part");
  50.   dump_1_pref (file, "output_max_field_width");
  51.   dump_1_pref (file, "output_precision");
  52.   dump_1_pref (file, "page_screen_output");
  53.   dump_1_pref (file, "prefer_column_vectors");
  54.   dump_1_pref (file, "prefer_zero_one_indexing");
  55.   dump_1_pref (file, "print_answer_id_name");
  56.   dump_1_pref (file, "print_empty_dimensions");
  57.   dump_1_pref (file, "propagate_empty_matrices");
  58.   dump_1_pref (file, "resize_on_range_error");
  59.   dump_1_pref (file, "return_last_computed_value");
  60.   dump_1_pref (file, "save_precision");
  61.   dump_1_pref (file, "silent_functions");
  62.   dump_1_pref (file, "split_long_rows");
  63.   dump_1_pref (file, "treat_neg_dim_as_zero");
  64.   dump_1_pref (file, "warn_assign_as_truth_value");
  65.   dump_1_pref (file, "warn_comma_in_global_decl");
  66.   dump_1_pref (file, "warn_divide_by_zero");
  67.  
  68. endfunction
  69.