diff options
author | Martin Rudalics <rudalics@gmx.at> | 2014-01-19 17:59:51 +0100 |
---|---|---|
committer | Martin Rudalics <rudalics@gmx.at> | 2014-01-19 17:59:51 +0100 |
commit | ad9eb30a3ffe4cfd8dc759e9c89f33414a56a2cc (patch) | |
tree | e5018c9c8afc6e490661c1068d739f406b25df4e | |
parent | 21f9541125cf55fb26dcb8d2e0a7049f08faa9b5 (diff) | |
download | emacs-ad9eb30a3ffe4cfd8dc759e9c89f33414a56a2cc.tar.gz emacs-ad9eb30a3ffe4cfd8dc759e9c89f33414a56a2cc.tar.bz2 emacs-ad9eb30a3ffe4cfd8dc759e9c89f33414a56a2cc.zip |
Extend last fix of term-window-width (Bug#16470).
-rw-r--r-- | lisp/term.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/term.el b/lisp/term.el index 6647e3e32ea..87898bac39f 100644 --- a/lisp/term.el +++ b/lisp/term.el @@ -977,7 +977,7 @@ is buffer-local." (/= (frame-parameter nil 'right-fringe) 0)) ;; Call window-text-width instead of window-width (Bug#16470). (window-text-width) - (1- (window-width)))) + (1- (window-text-width)))) (put 'term-mode 'mode-class 'special) |