Make the active-command-window work again
part of darcs patch Sun Sep 18 21:04:12 EEST 2005 Eric Knauel <knauel@informatik.uni-tuebingen.de>
This commit is contained in:
parent
83ec071269
commit
4fbe6c5e51
|
@ -211,6 +211,7 @@
|
||||||
(append-to-history! new-entry)
|
(append-to-history! new-entry)
|
||||||
(signal-result-buffer-object-change)
|
(signal-result-buffer-object-change)
|
||||||
(obtain-lock paint-lock)
|
(obtain-lock paint-lock)
|
||||||
|
(paint-active-command-window)
|
||||||
(paint-result-window new-entry)
|
(paint-result-window new-entry)
|
||||||
(refresh-result-window)
|
(refresh-result-window)
|
||||||
(move-cursor (command-buffer) (result-buffer))
|
(move-cursor (command-buffer) (result-buffer))
|
||||||
|
@ -243,6 +244,7 @@
|
||||||
(append-to-history! new-entry)
|
(append-to-history! new-entry)
|
||||||
(signal-result-buffer-object-change)
|
(signal-result-buffer-object-change)
|
||||||
(obtain-lock paint-lock)
|
(obtain-lock paint-lock)
|
||||||
|
(paint-active-command-window)
|
||||||
(paint-result-window new-entry)
|
(paint-result-window new-entry)
|
||||||
(refresh-result-window)
|
(refresh-result-window)
|
||||||
(move-cursor (command-buffer) (result-buffer))
|
(move-cursor (command-buffer) (result-buffer))
|
||||||
|
@ -265,6 +267,7 @@
|
||||||
(append-to-history! new-entry)
|
(append-to-history! new-entry)
|
||||||
(signal-result-buffer-object-change)
|
(signal-result-buffer-object-change)
|
||||||
(obtain-lock paint-lock)
|
(obtain-lock paint-lock)
|
||||||
|
(paint-active-command-window)
|
||||||
(paint-result-window new-entry)
|
(paint-result-window new-entry)
|
||||||
(refresh-result-window)
|
(refresh-result-window)
|
||||||
(move-cursor (command-buffer) (result-buffer))
|
(move-cursor (command-buffer) (result-buffer))
|
||||||
|
@ -683,9 +686,9 @@
|
||||||
=> (lambda (entry)
|
=> (lambda (entry)
|
||||||
(mvwaddstr win 1 2
|
(mvwaddstr win 1 2
|
||||||
(maybe-shorten-string
|
(maybe-shorten-string
|
||||||
(if (entry-data entry)
|
(if (history-entry-command (entry-data entry))
|
||||||
"user interaction"
|
(history-entry-command (entry-data entry))
|
||||||
(history-entry-command (entry-data entry)))
|
"user interaction")
|
||||||
width)))))
|
width)))))
|
||||||
(wrefresh win)))
|
(wrefresh win)))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue