log libinterp/corefcn/input.cc @ 23812:057a894914df

age author description
Sun, 30 Jul 2017 09:21:58 -0700 Rik Use C++11 string fcns back() and pop_back() to simplify code.
Fri, 28 Jul 2017 15:40:00 -0700 Rik Use character literals 'c' rather than string literals "c" when possible.
Fri, 28 Jul 2017 11:30:38 -0700 Rik Use C++11 raw string literals to avoid escaping double quotes.
Fri, 28 Jul 2017 11:19:36 -0700 Rik Use C++11 raw string literals to avoid escaping backslashes in strings.
Fri, 28 Jul 2017 10:34:33 -0700 Rik Use C++11 raw string literals to avoid escaping double quotes.
Tue, 25 Jul 2017 14:54:10 -0700 Rik Use C++11 nullptr rather than 0 in code (bug #51565).
Wed, 05 Jul 2017 09:44:01 -0400 John W. Eaton new class for caching file contents for debug and echo
Fri, 30 Jun 2017 20:59:54 -0400 John W. Eaton revamp echo command and move related variables inside tree_evaluator class
Thu, 29 Jun 2017 20:16:54 -0400 John W. Eaton new class to manage help system and associated variables
Mon, 26 Jun 2017 09:05:37 -0400 John W. Eaton remove octave:: namespace tag from symbols used inside octave namespace
Mon, 26 Jun 2017 08:06:05 -0400 John W. Eaton use m_ prefix for member variables in parser
Wed, 07 Jun 2017 02:13:05 -0400 John W. Eaton don't use singleton for call_stack
Thu, 25 May 2017 13:13:17 -0400 John W. Eaton pass reference to evaluator to octave_function call methods
Thu, 20 Apr 2017 00:20:59 -0400 John W. Eaton eliminate load-path singleton
Mon, 24 Apr 2017 17:20:37 -0700 Rik maint: Use convention 'int& x' for naming references.
Wed, 22 Feb 2017 12:58:07 -0500 John W. Eaton maint: Merge stable to default.
Wed, 22 Feb 2017 12:39:29 -0500 John W. Eaton maint: Update copyright dates. stable
Thu, 02 Feb 2017 16:16:26 -0500 John W. Eaton move bp_table class to separate file
Tue, 31 Jan 2017 17:29:32 -0800 Rik Replace feval calls with direct call to C++ function (bug #50116).
Tue, 31 Jan 2017 18:04:11 -0500 John W. Eaton avoid including parse tree headers in other header files unnecessarily
Sat, 28 Jan 2017 15:19:42 -0500 John W. Eaton more refactoring of interpreter and application classes
Fri, 27 Jan 2017 18:15:48 -0500 John W. Eaton move recover_from_exception and atexit functions inside octave namespace
Mon, 23 Jan 2017 14:27:48 -0500 John W. Eaton maint: Merge stable to default.
Fri, 20 Jan 2017 12:19:08 -0500 John W. Eaton maint: strip extra trailing newlines from files. stable
Thu, 19 Jan 2017 23:41:54 -0500 John W. Eaton move parse tree classes inside octave namespace
Tue, 17 Jan 2017 14:40:40 -0500 John W. Eaton move input reader classes into octave namespace
Tue, 17 Jan 2017 14:25:51 -0500 John W. Eaton move pager and diary classes into octave namespace
Mon, 16 Jan 2017 15:44:21 -0500 John W. Eaton move octave_call_stack inside octave namespace
Wed, 04 Jan 2017 15:24:44 -0500 John W. Eaton maint: Merge stable to default.
Thu, 29 Dec 2016 16:31:00 -0800 Rik Remove redundant function __echostate__.
Thu, 29 Dec 2016 16:19:29 -0800 Rik doc: Add more sealso links between docstrings. stable
Sun, 13 Nov 2016 20:33:47 -0800 Rik maint: Standardize Copyright formatting.
Tue, 30 Aug 2016 21:46:47 -0700 Rik maint: Style check C++ code in libinterp/.
Wed, 17 Aug 2016 03:41:42 -0400 John W. Eaton move more classes inside octave namespace
Wed, 17 Aug 2016 01:05:19 -0400 John W. Eaton maint: Update copyright notices for 2016.
Tue, 12 Jul 2016 14:28:07 -0400 John W. Eaton put parser, lexer, and evaluator in namespace; interpreter now owns evaluator
Thu, 30 Jun 2016 18:19:37 +1000 Lachlan Andrew Allow tab completion of arrays of structures.
Thu, 30 Jun 2016 18:17:26 +1000 Lachlan Andrew Track line numbers when in debug mode (bug #45764)
Mon, 11 Jul 2016 18:05:53 -0400 John W. Eaton move new interpreter class to separate file
Mon, 11 Jul 2016 17:05:33 -0400 John W. Eaton move call_stack class to a separate file
Sun, 10 Jul 2016 07:15:21 -0400 John W. Eaton use classes for octave application and interpreter
Wed, 06 Jul 2016 18:31:40 -0400 John W. Eaton move signal functions into octave namespace
Tue, 21 Jun 2016 16:07:51 -0400 John W. Eaton move docstrings in C++ files out of C strings and into comments
Wed, 15 Jun 2016 16:41:02 -0400 John W. Eaton remove unnecessary file pathlen.h
Mon, 13 Jun 2016 09:18:03 -0700 Rik maint: Prefer is_empty() rather than "length () == 0".
Fri, 10 Jun 2016 15:29:18 -0400 John W. Eaton don't include unistd.h unless it is needed
Thu, 19 May 2016 18:55:23 -0400 John W. Eaton use namespace for command_editor and command_history classes
Thu, 19 May 2016 12:56:47 -0400 John W. Eaton use namespace for unwind_protect class
Wed, 18 May 2016 15:23:05 -0400 John W. Eaton use namespace for system time classes
Tue, 17 May 2016 12:09:30 -0400 John W. Eaton use "#if ..." consistently instead of "#ifdef" and "#ifndef"
Sun, 27 Mar 2016 20:39:19 -0700 Rik doc: Wrap C++ docstrings to 79 characters + newline (80 total).
Thu, 18 Feb 2016 13:34:50 -0800 Rik Use '#include "config.h"' rather than <config.h>.
Fri, 05 Feb 2016 16:29:08 -0800 Rik maint: Indent #ifdef blocks in libinterp.
Thu, 21 Jan 2016 09:47:50 -0800 Rik maint: Use "return ovl (...)" in DEFUN macros.
Mon, 18 Jan 2016 18:28:06 -0800 Rik Switch gripe_XXX to either err_XXX or warn_XXX naming scheme.
Fri, 15 Jan 2016 13:40:34 -0800 Rik maint: Remove unnecessary declarations of retval.
Tue, 29 Dec 2015 11:45:27 -0500 John W. Eaton strip trailing whitespace from files
Sun, 27 Dec 2015 12:25:03 -0800 Rik Clean up instances of make_argv().
Fri, 25 Dec 2015 00:36:19 -0500 John W. Eaton maint: invert if/else/error instances.
Fri, 18 Dec 2015 16:18:41 -0800 Rik maint: Replace "octave_value_list ()" with "ovl ()".