-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(display_format): allow interrupting DisplayCell function
Fixes #1324
- Loading branch information
1 parent
f97cbe3
commit e0b4eba
Showing
3 changed files
with
43 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
%============================================================================= | ||
% Copyright (c) 2017 Allan CORNET (Nelson) | ||
%============================================================================= | ||
% This file is part of the Nelson. | ||
%============================================================================= | ||
% LICENCE_BLOCK_BEGIN | ||
% SPDX-License-Identifier: LGPL-3.0-or-later | ||
% LICENCE_BLOCK_END | ||
%============================================================================= | ||
% <-- Issue URL --> | ||
% https://github.com/nelson-lang/nelson/issues/1324 | ||
% <-- Short Description --> | ||
% Cell display could not be interrupted. | ||
%============================================================================= | ||
% <--INTERACTIVE TEST--> | ||
%============================================================================= | ||
A = 1:10 | ||
cell(A) | ||
% and press Ctrl+C | ||
%============================================================================= |