Improve display of preprocessor arguments under Octave

time-shift
Sébastien Villemot 2019-05-20 18:53:37 +02:00
parent 4ae409574d
commit e872f08cc5
No known key found for this signature in database
GPG Key ID: 2CECE9350ECEBE4A
1 changed files with 1 additions and 1 deletions

View File

@ -219,7 +219,7 @@ if preprocessoroutput
if isempty(varargin)
disp('none')
else
disp(varargin);
disp(strjoin(varargin));
end
end