1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
commit 806c044b08ccf8c53ce744a1578103037c622048
Author: T.V Raman <tv.raman.tv@gmail.com>
Date: Thu Sep 15 07:53:09 2022 -0700
fix emacspeak-proced under emacs 29
diff --git a/lisp/emacspeak-proced.el b/lisp/emacspeak-proced.el
index 5abe8d669..59f767934 100644
--- a/lisp/emacspeak-proced.el
+++ b/lisp/emacspeak-proced.el
@@ -166,8 +166,8 @@
(?s (emacspeak-proced-speak-field 'start))
(?t (emacspeak-proced-speak-field 'time))
(?a (emacspeak-proced-speak-field 'args))
- (otherwise (message "Pick field using mnemonic chars"))
- (sit-for 1)))
+ (otherwise (message "Pick field using mnemonic chars"))))
+
(defun emacspeak-proced-speak-args ()
"Speak command invocation for this process."
(interactive)
|