mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
(terminal-emulator): Fix args to `concat'. Now concat doesn't accept
interger.
This commit is contained in:
parent
e84fa7c5bc
commit
b01cef4781
1 changed files with 3 additions and 2 deletions
|
|
@ -1120,8 +1120,9 @@ subprocess started."
|
|||
(if (null height) (setq height (- (window-height (selected-window)) 1)))
|
||||
(terminal-mode)
|
||||
(setq te-width width te-height height)
|
||||
(setq te-terminal-name (concat te-terminal-name-prefix te-width
|
||||
te-height))
|
||||
(setq te-terminal-name (concat te-terminal-name-prefix
|
||||
(number-to-string te-width)
|
||||
(number-to-string te-height)))
|
||||
(setq mode-line-buffer-identification
|
||||
(list (format "Emacs terminal %dx%d: %%b " te-width te-height)
|
||||
'te-pending-output-info))
|
||||
|
|
|
|||
Loading…
Reference in a new issue