We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba581f5 commit c5c01dbCopy full SHA for c5c01db
1 file changed
jdict.m
@@ -522,13 +522,15 @@
522
else
523
onekey = idx.subs;
524
end
525
- escapedonekey = esckey_(onekey);
526
if (ischar(onekey) && ~isempty(onekey))
+ escapedonekey = esckey_(onekey);
527
if (onekey(1) ~= char(36))
528
temppath = [temppath '.' escapedonekey];
529
530
temppath = escapedonekey;
531
532
+ elseif (isnumeric(onekey))
533
+ temppath = [temppath '[' num2str(onekey - 1) ']'];
534
535
536
0 commit comments