From 1846cd25a20ca1ee07a923008db48745ae6633a4 Mon Sep 17 00:00:00 2001 From: cbsmith2 <cbsmith2@uab.edu> Date: Wed, 19 Mar 2025 10:43:35 -0500 Subject: [PATCH] Fixed regular expression in the who function. --- SaveTranscriptions.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SaveTranscriptions.m b/SaveTranscriptions.m index 3757616..b2ff34a 100644 --- a/SaveTranscriptions.m +++ b/SaveTranscriptions.m @@ -4,7 +4,7 @@ clc % Check for miscelaneous transcriptions in the work space -miscLS = who('-regexp', '^ls(([0-9]$)|($))'); +miscLS = who('-regexp', '^ls(([0-9]*$)|($))'); newLS = CheckmiscLS(miscLS); if ~isempty(newLS); ls = eval(newLS); end -- GitLab