Skip to content

Commit

Permalink
remove history as it is broken see #144
Browse files Browse the repository at this point in the history
  • Loading branch information
arnodelorme committed Aug 10, 2022
1 parent c4831ad commit f19a430
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pop_eventinfo.m
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
return
end

command = '[EEG, [], command] = pop_eventinfo(EEG)';
command = ''; %'[EEG, [], command] = pop_eventinfo(EEG)';
%% if STUDY is provided, check for consistency
hasSTUDY = false;
if exist('STUDY','var') && ~isempty(STUDY)
Expand Down
2 changes: 1 addition & 1 deletion pop_participantinfo.m
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
% ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
% THE POSSIBILITY OF SUCH DAMAGE.
function [EEG, STUDY, command] = pop_participantinfo(EEG,STUDY, varargin)
command = '[EEG, [], command] = pop_participantinfo(EEG);';
command = ''; %[EEG, [], command] = pop_participantinfo(EEG);';

%% check if there's already an opened window
if ~isempty(findobj('Tag','pInfoTable'))
Expand Down
3 changes: 2 additions & 1 deletion pop_taskinfo.m
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,8 @@
end

%% history
com = sprintf('EEG = pop_taskinfo(EEG);');
com = '';
% com = sprintf('EEG = pop_taskinfo(EEG);');


%% Helper functions
Expand Down

0 comments on commit f19a430

Please sign in to comment.