|--==> "BW" == Ben Wing <ben(a)666.com> writes:
BW> ok, i can duplicate this too. i'll look at it tomorrow, since it's
BW> bedtime now.
BW> it probably is related to the modeline changes i recently made --
BW> there's some stuff to print the tty frame number if it's greater than
BW> 1, done in a clever [or hackish, you be the judge] way.
BW> someone might try disabling that code -- it's in modeline.el -- and
BW> seeing if that fixes the problem.
I commented out:
(defconst modeline-tty-frame-specifier (make-specifier 'boolean))
(add-hook 'create-frame-hook 'modeline-update-tty-frame-specifier)
(defun modeline-update-tty-frame-specifier (f)
(if-fboundp 'frame-tty-p
(if (and (frame-tty-p f)
(> (frame-property f 'frame-number) 1))
(set-specifier modeline-tty-frame-specifier t f))))
(define-modeline-control tty-frame-id (list modeline-tty-frame-specifier
" [%S]"
)
"Modeline control for showing which TTY frame is selected.")
and:
(cons modeline-tty-frame-id-extent 'modeline-tty-frame-id)
Which is what you are talking about isn't it? Sorry, didn't make any
difference.:-(
--
|---<Steve Youngs>---------------<GnuPG KeyID: 10D5C9C5>---|
| XEmacs - It's not just an editor. |
| It's a way of life. |
|------------------------------------<youngs(a)xemacs.org>---|