window system if overflow-newline-into-fringe is enabled.
(term-mode): Don't disable overflow-newline-into-fringe.
(defun term-window-width ()
(if (featurep 'xemacs)
(1- (window-width))
- (if window-system
+ (if (and window-system overflow-newline-into-fringe)
(window-width)
(1- (window-width)))))
(make-local-variable 'term-width)
(setq term-width (term-window-width))
(setq term-height (1- (window-height)))
- (term-ifnot-xemacs
- (set (make-local-variable 'overflow-newline-into-fringe) nil))
(make-local-variable 'term-terminal-parameter)
(make-local-variable 'term-saved-cursor)
(make-local-variable 'term-last-input-start)