-
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.
7.0.7 test release: many changes, new logo; fixed def macros
- Loading branch information
Showing
24 changed files
with
203 additions
and
113 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,51 @@ | ||
2019-10-01 Bob Weiner <[email protected]> | ||
|
||
* hact.el (htype:delete): Removed improper quote in (fboundp 'sym) call. | ||
(htype:symbol): Reverted to prior version which properly creates | ||
previously undefined Elisp symbols, thereby fixing htype:create. | ||
(actype:create): Made symtable:add call part of compile-time macro value. | ||
|
||
2019-09-24 Mats Lidell <[email protected]> | ||
|
||
* Makefile (ELC_COMPILE): Added missing kprop-em.elc. | ||
|
||
2019-09-23 Bob Weiner <[email protected]> | ||
|
||
* hui.el (hui:link-directly): Called symtable:actype-p replacing invalid | ||
htype:actype-p call. | ||
|
||
* hmouse-drv.el (hkey-buffer-move): Wrapped (require 'windmove) in eval-and-compile | ||
to remove a byte-compiler warning. | ||
|
||
2019-09-22 Bob Weiner <[email protected]> | ||
|
||
* hact.el (action:path-args-rel): Added file-name-directory call so always | ||
sends a directory as the second argument, preventing off-by-one level | ||
of relative directory generation. | ||
|
||
2019-09-19 Bob Weiner <[email protected]> | ||
|
||
* hmouse-drv.el (hkey-help): Added display of ibtype, if any. | ||
|
||
* hbut.el (ibtype:def-symbol): Added. | ||
|
||
* hact.el (actype:def-symbol): Change mislabeled 'sym-name' to 'name'. | ||
|
||
2019-09-18 Bob Weiner <[email protected]> | ||
|
||
* kotl/kotl-mode.el (kotl-mode:top-cells): Removed (kvspec:activate) | ||
which was using the unchanged viewspec that improperly set the view. | ||
|
||
* hibtypes.el (action): Updated to handle boolean function results. | ||
hactypes.el (display-boolean): Added to display the result of Action ibtypes | ||
boolean function calls. | ||
man/hyperbole.texi (Action Buttons): Added paragraph on boolean | ||
predicate result display. | ||
|
||
============================================================================== | ||
V7.0.7 changes ^^^^: | ||
============================================================================== | ||
|
||
2019-09-17 Bob Weiner <[email protected]> | ||
|
||
* hui.el (hui:action): | ||
|
@@ -181,6 +229,10 @@ | |
|
||
* DEMO: Changed most 'click' uses in DEMO to 'press'. | ||
|
||
============================================================================== | ||
V7.0.6 changes ^^^^: | ||
============================================================================== | ||
|
||
* man/hyperbole.texi (Implicit Button Type Summaries): Changed to Implicit | ||
Button Types. | ||
(Implicit Button Type): Changed to Implicit Button | ||
|
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
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
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
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 |
---|---|---|
|
@@ -1242,12 +1242,17 @@ arg1 ... argN '>'. For example, <mail [email protected]>." | |
(ibut:label-set lbl start-pos end-pos) | ||
(setq action (read (concat "(" lbl ")")) | ||
args (cdr action)) | ||
(when (and (null args) (symbolp actype) (boundp actype) | ||
(or var-flag (not (fboundp actype)))) | ||
;; Is a variable, display its value as the action | ||
(setq args `(',actype) | ||
action `(display-variable ',actype) | ||
actype 'display-variable)) | ||
(cond ((and (symbolp actype) (fboundp actype) | ||
(string-match "-p\\'" (symbol-name actype))) | ||
;; Is a function with a boolean result | ||
(setq action `(display-boolean ',action) | ||
actype 'display-boolean)) | ||
((and (null args) (symbolp actype) (boundp actype) | ||
(or var-flag (not (fboundp actype)))) | ||
;; Is a variable, display its value as the action | ||
(setq args `(',actype) | ||
action `(display-variable ',actype) | ||
actype 'display-variable))) | ||
;; Necessary so can return a null value, which actype:act cannot. | ||
(let ((hrule:action (if (eq hrule:action #'actype:identity) | ||
hrule:action | ||
|
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
Oops, something went wrong.