Ar an tríú lá is fiche de mí Iúil, scríobh zooko:
Folks:
I couldn't send this report with "M-x report-xemacs-bug", so I'm
sending it this way.
If I am in viper mode, then when I try to cut or copy a line (with
"dd" or "yy" VI commands), the minibuffer announces:
"Symbol's value as variable is void: mouse-track-rectangle-p"
I suspect that this might be partially because there is no mouse,
since I'm doing this over and ssh connection, under GNU screen.
Can you try the below patch? Apply it to select.el, and if you don’t want to
rebuild, load the new select.el on startup.
Unfortunately, if I then do "M-x report-xemacs-bug", I get
into a
very bad state where neither "C-x" nor "M-x" work, so I cannot do
anything, and I eventually have to "kill -15" my xemacs process from
another screen.
That seems like an independent problem, and it’s not something I’ve seen
before:-/ . If you’ve any more information on it, please send it on.
--- lisp/select.el~ 2007-07-28 14:34:25.000000000 +0200
+++ lisp/select.el 2007-07-28 14:33:56.000000000 +0200
@@ -276,7 +276,8 @@
;; application asserts the selection. This is probably not a big deal.
(defun activate-region-as-selection ()
- (cond (mouse-track-rectangle-p (mouse-track-activate-rectangular-selection))
+ (cond ((and (featurep 'mouse) mouse-track-rectangle-p)
+ (mouse-track-activate-rectangular-selection))
((marker-buffer (mark-marker t))
(own-selection (cons (point-marker t) (mark-marker t))))))
@@ -346,7 +347,7 @@
(set-extent-property previous-extent 'end-open nil)
(cond
- (mouse-track-rectangle-p
+ ((and (featurep 'mouse) mouse-track-rectangle-p)
(setq previous-extent (list previous-extent))
(default-mouse-track-next-move-rect start end previous-extent)
))
--
On the quay of the little Black Sea port, where the rescued pair came once
more into contact with civilization, Dobrinton was bitten by a dog which was
assumed to be mad, though it may only have been indiscriminating. (Saki)
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta