[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] trunk r116069: In term-window-width call window-text-width
From: |
Martin Rudalics |
Subject: |
[Emacs-diffs] trunk r116069: In term-window-width call window-text-width instead of window-width (Bug#16470). |
Date: |
Sun, 19 Jan 2014 09:24:39 +0000 |
User-agent: |
Bazaar (2.6b2) |
------------------------------------------------------------
revno: 116069
revision-id: address@hidden
parent: address@hidden
committer: martin rudalics <address@hidden>
branch nick: trunk
timestamp: Sun 2014-01-19 10:24:26 +0100
message:
In term-window-width call window-text-width instead of window-width
(Bug#16470).
* term.el (term-window-width): Call window-text-width instead of
window-width (Bug#16470).
modified:
lisp/ChangeLog changelog-20091113204419-o5vbwnq5f7feedwu-1432
lisp/term.el term.el-20091113204419-o5vbwnq5f7feedwu-794
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog 2014-01-18 22:23:38 +0000
+++ b/lisp/ChangeLog 2014-01-19 09:24:26 +0000
@@ -1,3 +1,8 @@
+2014-01-19 Martin Rudalics <address@hidden>
+
+ * term.el (term-window-width): Call window-text-width instead of
+ window-width (Bug#16470).
+
2014-01-18 Paul Eggert <address@hidden>
* simple.el (password-word-equivalents): Remove duplicates.
=== modified file 'lisp/term.el'
--- a/lisp/term.el 2014-01-01 07:43:34 +0000
+++ b/lisp/term.el 2014-01-19 09:24:26 +0000
@@ -975,7 +975,8 @@
(display-graphic-p)
overflow-newline-into-fringe
(/= (frame-parameter nil 'right-fringe) 0))
- (window-width)
+ ;; Call window-text-width instead of window-width (Bug#16470).
+ (window-text-width)
(1- (window-width))))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] trunk r116069: In term-window-width call window-text-width instead of window-width (Bug#16470).,
Martin Rudalics <=