File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 112026-06-16 Bob Weiner <rsw@gnu.org>
22
3+ * test/demo-tests.el (fast-demo-display-kotl-starting-from-cell): Fix to
4+ erase viespec modification to "kotl/EXAMPLE.kotl" which test was leaving.
5+
36* hsys-activities.el: Improve documentation.
47
58* hui.el (hui:ebut-message, hui:ibut-message): Fix 'actype' setting so
Original file line number Diff line number Diff line change 33; ; Author: Mats Lidell <matsl@gnu.org>
44; ;
55; ; Orig-Date: 30-Jan-21 at 12:00:00
6- ; ; Last-Mod: 16-Mar -26 at 00:16:06 by Bob Weiner
6+ ; ; Last-Mod: 16-Jun -26 at 22:09:58 by Bob Weiner
77; ;
88; ; SPDX-License-Identifier: GPL-3.0-or-later
99; ;
@@ -807,12 +807,19 @@ enough files with matching mode loaded."
807807 (insert (format " <%s kotl/EXAMPLE.kotl#3b10|c2en> "
808808 default-directory))
809809 (goto-char 5 )
810- (action-key)
811- (setq buf (current-buffer ))
812- (should (string-suffix-p " EXAMPLE.kotl" buffer-file-name))
813- (should (looking-at-p " Cell Transposition:" ))
814- ; ; Ensure visible cell length is cutoff at 2 lines
815- (should (= 2 (hypb:string-count-matches " \n " (kcell-view:contents)))))))
810+ (unwind-protect
811+ (progn (action-key)
812+ (setq buf (current-buffer ))
813+ (should (string-suffix-p " EXAMPLE.kotl" buffer-file-name))
814+ (should (looking-at-p " Cell Transposition:" ))
815+ ; ; Ensure visible cell length is cutoff at 2 lines
816+ (should (= 2 (hypb:string-count-matches
817+ " \n " (kcell-view:contents)))))
818+ ; ; Restore kotl/EXAMPLE.kotl to its original viewspec and kill the
819+ ; ; buffer so it is unchanged.
820+ (kvspec:activate " ben" )
821+ (set-buffer-modified-p nil )
822+ (kill-buffer (current-buffer ))))))
816823
817824(provide 'demo-tests )
818825
You can’t perform that action at this time.
0 commit comments