-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
16 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
2023-12-10 Mats Lidell <[email protected]> | ||
|
||
* hui.el (hui:link-possible-types): Fix ebut being identified as ibut. | ||
|
||
2023-12-09 Mats Lidell <[email protected]> | ||
|
||
* test/hy-test-helpers.el (hy-test-helpers:consume-input-events): Remove | ||
|
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
;; Author: Mats Lidell <[email protected]> | ||
;; | ||
;; Orig-Date: 30-Jan-21 at 12:00:00 | ||
;; Last-Mod: 7-Dec-23 at 00:32:03 by Mats Lidell | ||
;; Last-Mod: 10-Dec-23 at 21:11:07 by Mats Lidell | ||
;; | ||
;; SPDX-License-Identifier: GPL-3.0-or-later | ||
;; | ||
|
@@ -958,9 +958,7 @@ With point on label suggest that ibut for rename." | |
;; Explicit Button link-to-ebut | ||
(with-temp-buffer | ||
(ebut:program "label" 'link-to-directory "/tmp") | ||
(should (equal (hattr:get (hbut:at-p) 'categ) 'explicit)) | ||
;; BUG!? SHOULD BE LINK TO EBUT HERE | ||
(should (equal (caar (hui:link-possible-types)) 'link-to-ibut))) | ||
(should (equal (caar (hui:link-possible-types)) 'link-to-ebut))) | ||
|
||
;; Implicit Button link-to-ibut | ||
(with-temp-buffer | ||
|