Please write in English if possible, because the Emacs maintainers usually do not have translators to read other languages for them.
Your bug report will be posted to the [email protected] mailing list. Please describe exactly what actions triggered the bug and the precise symptoms of the bug: There is an incompatible change in the function comint-send-input in comint.el between versions 21.4 and 22.0.50. This change seems to be not documented in NEWS. Old : (defun comint-send-input () ... ) New : (defun comint-send-input (&optional no-newline artificial) "...Callers sending input not from the user should use ARTIFICIAL = t. " ... ) I assume this is the cause for problems in gnuplot.el (Part of the plotting package gnuplot). It workes fine in v.21.4, but in 22.0.50 after every command sent to gnuplot emacs hangs until awakened with C-g. The problem disappears after changing "(comint-send-input)" to "(comint-send-input nil t)" in gnuplot.el. In GNU Emacs 22.0.50.1 (i386-mingw-nt5.0.2195) of 2006-03-09 on NEUTRINO X server distributor `Microsoft Corp.', version 5.0.2195 configured using `configure --with-gcc (3.4) --cflags -Ic:/Programme/GnuWin32/include' 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: DEU locale-coding-system: cp1252 default-enable-multibyte-characters: t Major mode: Outline Minor modes in effect: iswitchb-mode: t auto-insert-mode: t encoded-kbd-mode: t tooltip-mode: t auto-compression-mode: t mouse-wheel-mode: t menu-bar-mode: t file-name-shadow-mode: t global-font-lock-mode: t font-lock-mode: t blink-cursor-mode: t unify-8859-on-decoding-mode: t unify-8859-on-encoding-mode: t utf-translate-cjk-mode: t line-number-mode: t transient-mark-mode: t view-mode: t _______________________________________________ emacs-pretest-bug mailing list [email protected] http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug
