[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#5514: 23.1; problem when moving mouse
From: |
Lab Computer |
Subject: |
bug#5514: 23.1; problem when moving mouse |
Date: |
Tue, 2 Feb 2010 17:03:25 -0800 |
======start of message========
we are using emacs to connect to a usb-too-serial port and communicate
with
an arm micro-processor and send it certain commands.
we have a scripter that will load a txt file and process it line by
line,
sending out the commands inside it to the micro-processor.
the scripter has a main while loop in which there is a 0.3 second
delay using
"(sit-for)" between each time a command is sent out to the
microprocessor.
each time through the loop, the index of the loop is printed to a log
buffer
for debugging purposes.
as the script is running, every .3 seconds the index is printed to the
log
buffer and we know its working properly.
HOWEVER, if the mouse is moved while the scripter is running, it seems
that
the "sit-fors" are inefective and the scripter runs through the while
loop
almost instantly. looking at the log buffer one can see that all the
indexes
were printed, which is how I know that the while loop is still getting
executed but it is the sit-fors that are getting comprimised.
here is our while loop:
(while (< idx (length *command_list*))
;; if a sexp, then evaluate
(if (not (stringp (nth idx *command_list*)))
(eval (nth idx *command_list*))
)
;; if it looks like a duck.....
(when (and (stringp (nth idx *command_list*))
(string-match "<.*>+?" (nth idx *command_list*)))
(print idx 'print-log)
(process-IT-command device (nth idx *command_list*))
;; (send-command (nth idx *command_list*) device)
)
(sit-for delay)
(setq idx (1+ idx))
(redisplay t)
)
I tried using a the version of emacs that runs on x11 (rather than the
carbon
version) , and this time the same problem occurs if the mouse button is
clicked, but not when it moves.
please email me at sbonakdar@tandemdiabetes.com with any possible
solutions.
============ End of MESSAGE =======================
In GNU Emacs 23.1.1 (i386-apple-darwin9.8.0, NS apple-appkit-949.54)
of 2009-08-16 on black.local
Windowing system distributor `Apple', version 10.3.949
configured using `configure '--with-ns''
Important settings:
value of $LC_ALL: nil
value of $LC_COLLATE: nil
value of $LC_CTYPE: nil
value of $LC_MESSAGES: nil
value of $LC_MONETARY: nil
value of $LC_NUMERIC: nil
value of $LC_TIME: nil
value of $LANG: nil
value of $XMODIFIERS: nil
locale-coding-system: nil
default-enable-multibyte-characters: t
Major mode: Fundamental
Minor modes in effect:
display-time-mode: t
which-function-mode: t
show-paren-mode: t
global-auto-revert-mode: t
delete-selection-mode: t
pc-selection-mode: t
tooltip-mode: t
mouse-wheel-mode: t
menu-bar-mode: t
file-name-shadow-mode: t
global-font-lock-mode: t
blink-cursor-mode: t
global-auto-composition-mode: t
auto-encryption-mode: t
auto-compression-mode: t
column-number-mode: t
line-number-mode: t
transient-mark-mode: t
Recent input:
M-x r e p o r t - e m a c s - b u g <return>
Recent messages:
"just about to load scripter files--------"
Loading /Users/lab/Desktop/Electronics/lisp-code/functions/check-
command-response.el (source)...done
Loading /Users/lab/Desktop/Electronics/lisp-code/functions/scripter-
functions-released.el (source)...done
Loading /Users/lab/Desktop/Electronics/lisp-code/functions/user-
functions.el (source)...done
Loading /Users/lab/Desktop/Electronics/lisp-code/functions/scripter-
functions-released.el (source)...done
Loading /users/lab/emacs/lisp/emacs-lisp/cl-extra.elc...done
Recognizing tables...done
For information about GNU Emacs and the GNU system, type C-h C-a.
- bug#5514: 23.1; problem when moving mouse,
Lab Computer <=