branch: externals/hyperbole
commit 5ae355054131dc3594188fad7ce716be1ba6f1b1
Author: Bob Weiner <[email protected]>
Commit: Bob Weiner <[email protected]>
* hactypes.el (exec-shell-cmd): Replaced call to old function
'show-output-from-shell'
with 'comint-show-output'. This fixed a failure when this action type
is used.
---
ChangeLog | 3 +++
hactypes.el | 2 +-
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/ChangeLog b/ChangeLog
index 1c66404..3bd756c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,9 @@
2016-07-27 Bob Weiner <[email protected]>
+* hactypes.el (exec-shell-cmd): Replaced call to old function
'show-output-from-shell'
+ with 'comint-show-output'. This fixed a failure when this action type is
used.
+
* HY-ANNOUNCE (About):
README (Files): Added pointers to Hyperbole screenshot files.
diff --git a/hactypes.el b/hactypes.el
index 171743c..af1a7b7 100644
--- a/hactypes.el
+++ b/hactypes.el
@@ -138,7 +138,7 @@ kill the last output to the shell buffer before executing
SHELL-CMD."
(comint-delete-output))
(insert shell-cmd)
(comint-send-input)
- (show-output-from-shell)
+ (comint-show-output)
(or internal-cmd (scroll-down 1)))
(select-window owind))))