Minor Bug: Key bindings shown twice in org-mode

2006-10-17 Thread Rommerskirchen, Heinrich

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 emacs-pretest-bug@gnu.org mailing list.

Please describe exactly what actions triggered the bug
and the precise symptoms of the bug:

'C-c C-h' lists in org-mode most bindings twice. 'M-x describe-bindings' also 
lists most bindings starting with 'C-c' twice.

If emacs crashed, and you have the emacs process in the gdb debugger,
please include the output from the following gdb commands:
`bt full' and `xbacktrace'.
If you would like to further debug the crash, please read the file
c:/LocalData/rh042591/bin/emacs/etc/DEBUG for instructions.


In GNU Emacs 22.0.50.1 (i386-mingw-nt5.0.2195)
 of 2006-10-10 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: Org

Minor modes in effect:
  encoded-kbd-mode: t
  tooltip-mode: t
  tool-bar-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-encoding-mode: t
  utf-translate-cjk-mode: t
  auto-compression-mode: t
  line-number-mode: t

Recent input:
C-x C-f t . o r g  M-x o r g - m o d e  
C-c C-h 
 
  

Recent messages:
For information about the GNU Project and its goals, type C-h C-p.
(New file)
Loading org...
Loading easy-mmode...done
Loading org...done
OVERVIEW
Loading help-mode...done
Loading emacsbug...
Loading regexp-opt...done
Loading emacsbug...done



Mit freundlichen Grüßen
 Heinz Rommerskirchen
-- 
SIEMENS AG Communications
Com CD SE P2   System Engineering

Heinrich Rommerskirchen Tel.:+49 89 722 42591
Hofmannstr. 51  FAX.:+49 89 722 27284
D-81359 München



___
emacs-pretest-bug mailing list
emacs-pretest-bug@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug


Missing NEWS entry for comint-send-input

2006-03-31 Thread Rommerskirchen, Heinrich

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 emacs-pretest-bug@gnu.org 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
emacs-pretest-bug@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug


space in regexp-search

2006-02-08 Thread Rommerskirchen, Heinrich
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 emacs-pretest-bug@gnu.org mailing
list.

Please describe exactly what actions triggered the bug
and the precise symptoms of the bug:

During regexp-searches I want the  key to behave like any other
"printable" key, like e. g. "a". For this reason I have in my .emacs the
line

  (define-key isearch-mode-map " " 'isearch-printing-char)

This worked in Emacs 20.x and 21.x, but stopped working in the developer
version.
(Precompiled w32-binary from the Auctex project; download from
alpha.gnu.org)
In spite of this .emacs-line a single  searches for arbitrary
whitespace. I
couldn't find anything in the NEWS file explaining this change.

After reading the chapter "Regular Expression Search" in the info file I
got the
idea the following line should do what I want:

  (setq search-whitespace-regexp "[ ]")

But this leads to other trouble.  now doesn't look for tabs,
newlines,
etc. but pressing  twice, also finds only places in the text
where there
is a single space. E.g. with a buffer containing "a b  c", pressing 
"C-M-s [ a - z ] SPC SPC [ a - z ]" finds the substring from a to b but
not the
substring from b to c. (emacs started with '-Q', the setq above
evaluated in
*scratch*, no other customizations)



In GNU Emacs 22.0.50.1 (i386-mingw-nt5.0.2195)
 of 2006-01-29 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: Text

Minor modes in effect:
  encoded-kbd-mode: t
  tooltip-mode: t
  auto-compression-mode: t
  tool-bar-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-encoding-mode: t
  utf-translate-cjk-mode: t
  line-number-mode: t

Recent input:
C-y C-x C-e C-x C-f t m p / t m p . t x t  
C-M-s [ a - z ] SPC SPC [ a - z ]
C-M-s C-s 


Recent messages:
(C:\LocalData\rh042591\bin\emacs\bin\emacs.exe -Q --debug-init)
Loading encoded-kb...done
For information about the GNU Project and its goals, type C-h C-p.
Mark set
"[ ]"
Mark saved where search started
Loading emacsbug...
Loading regexp-opt...done
Loading emacsbug...done



___
emacs-pretest-bug mailing list
emacs-pretest-bug@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug