Description: Fix FTBFS against Octave 6.1 Fix a syntax error involving continuation lines ("..."). Author: Rafael Laboissiere Origin: upstream, https://github.com/ltfat/ltfat/pull/116/commits/7e040b3961a5c2dfcc132396747277809192e507 Bug: https://github.com/ltfat/ltfat/pull/116 Bug-Debian: https://bugs.debian.org/976212 Forwarded: not-needed Last-Update: 2020-12-02 --- octave-ltfat-2.3.1+dfsg.orig/inst/nonstatgab/nsdgt.m +++ octave-ltfat-2.3.1+dfsg/inst/nonstatgab/nsdgt.m @@ -149,8 +149,8 @@ for ii = 1:N col = ceil(Lg/M(ii)); temp = zeros(col*M(ii),W,assert_classname(f,g{1})); - temp([end-floor(Lg/2)+1:end,1:ceil(Lg/2)],:) = bsxfun(@ ... - times,f(win_range,:),g{ii}(idx)); + temp([end-floor(Lg/2)+1:end,1:ceil(Lg/2)],:) = bsxfun(@times, ... + f(win_range,:),g{ii}(idx)); temp = reshape(temp,M(ii),col,W); X = squeeze(fft(sum(temp,2)));