unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#11439: Isearch and ucs-insert strangeness
@ 2012-05-08 20:51 Deniz Dogan
  2012-05-10 18:20 ` Glenn Morris
  2012-07-18  9:29 ` Chong Yidong
  0 siblings, 2 replies; 6+ messages in thread
From: Deniz Dogan @ 2012-05-08 20:51 UTC (permalink / raw)
  To: 11439

I'm witnessing some strange behavior when using ucs-insert in
combination with isearch.

Reproduction:

$ runemacs.exe -Q

C-r
C-x 8 RET
C-g

At this point, we're back to normal.  Now let's try the same thing
again:

C-r
C-x 8 RET ;; I think this is where something goes wrong.
C-g
C-g

Notice how the mode line still says "Isearch", but we're actually not in
isearch at all.


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'.
For information about debugging Emacs, please read the file
c:/misc/emacs/etc/DEBUG.


In GNU Emacs 24.1.50.1 (i386-mingw-nt6.1.7601)
  of 2012-04-12 on EKATERINA
Bzr revision: 107874 
monnier@iro.umontreal.ca-20120411181320-zd3wwgbom1229q74
Windowing system distributor `Microsoft Corp.', version 6.1.7601
Configured using:
  `configure --with-gcc (4.6)'

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: SVE
   value of $XMODIFIERS: nil
   locale-coding-system: cp1252
   default enable-multibyte-characters: t

Major mode: Lisp Interaction

Minor modes in effect:
   tooltip-mode: t
   mouse-wheel-mode: t
   tool-bar-mode: t
   menu-bar-mode: t
   file-name-shadow-mode: t
   global-font-lock-mode: t
   font-lock-mode: t
   blink-cursor-mode: t
   auto-composition-mode: t
   auto-encryption-mode: t
   auto-compression-mode: t
   line-number-mode: t
   transient-mark-mode: t

Recent input:
C-r C-x 8 <return> H E A R T S-SPC W I T H S-SPC A
R R O W <return> C-r <return> C-g C-g C-t C-g C-r C-t
8 <return> C-- C-g C-g C-r C-x 8 <return> h <return>
C-g M-t M-x r e p o r t - e m a c s - b u g <retur
n>

Recent messages:
For information about GNU Emacs and the GNU system, type C-h C-a.
Quit [6 times]
transpose-subr-1: Don't have two things to transpose

Load-path shadows:
None found.

Features:
(shadow sort gnus-util mail-extr emacsbug message format-spec rfc822 mml
easymenu mml-sec mm-decode mm-bodies mm-encode mail-parse rfc2231
mailabbrev gmm-utils mailheader sendmail regexp-opt rfc2047 rfc2045
ietf-drums mm-util mail-prsvr mail-utils iso-transl multi-isearch
time-date tooltip ediff-hook vc-hooks lisp-float-type mwheel dos-w32
disp-table ls-lisp w32-win w32-vars tool-bar dnd fontset image fringe
lisp-mode register page menu-bar rfn-eshadow timer select scroll-bar
mouse jit-lock font-lock syntax facemenu font-core frame cham georgian
utf-8-lang misc-lang vietnamese tibetan thai tai-viet lao korean
japanese hebrew greek romanian slovak czech european ethiopic indian
cyrillic chinese case-table epa-hook jka-cmpr-hook help simple abbrev
minibuffer button faces cus-face files text-properties overlay sha1 md5
base64 format env code-pages mule custom widget hashtable-print-readable
backquote make-network-process multi-tty emacs)





^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#11439: Isearch and ucs-insert strangeness
  2012-05-08 20:51 bug#11439: Isearch and ucs-insert strangeness Deniz Dogan
@ 2012-05-10 18:20 ` Glenn Morris
  2012-07-18  9:29 ` Chong Yidong
  1 sibling, 0 replies; 6+ messages in thread
From: Glenn Morris @ 2012-05-10 18:20 UTC (permalink / raw)
  To: Deniz Dogan; +Cc: 11439


In emacs -Q,
(lookup-key isearch-mode-map "\C-x")

says

isearch-other-control-char

but after

emacs -Q
C-x 8 RET C-g

it says

(keymap (56) (t . isearch-other-control-char))


Using C-x 8 causes iso-transl to be loaded, and it does this:

  (define-key isearch-mode-map "\C-x" nil)
  (define-key isearch-mode-map [?\C-x t] 'isearch-other-control-char)
  (define-key isearch-mode-map "\C-x8" nil)






^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#11439: Isearch and ucs-insert strangeness
  2012-05-08 20:51 bug#11439: Isearch and ucs-insert strangeness Deniz Dogan
  2012-05-10 18:20 ` Glenn Morris
@ 2012-07-18  9:29 ` Chong Yidong
  2012-07-18  9:52   ` Andreas Schwab
  1 sibling, 1 reply; 6+ messages in thread
From: Chong Yidong @ 2012-07-18  9:29 UTC (permalink / raw)
  To: Deniz Dogan; +Cc: 11439

Deniz Dogan <deniz@dogan.se> writes:

> C-r
> C-x 8 RET
> C-g
>
> At this point, we're back to normal.  Now let's try the same thing
> again:
>
> C-r
> C-x 8 RET ;; I think this is where something goes wrong.
> C-g
> C-g
>
> Notice how the mode line still says "Isearch", but we're actually not in
> isearch at all.

Fixed in trunk.  Thanks.





^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#11439: Isearch and ucs-insert strangeness
  2012-07-18  9:29 ` Chong Yidong
@ 2012-07-18  9:52   ` Andreas Schwab
  2012-07-18 10:17     ` Juri Linkov
  0 siblings, 1 reply; 6+ messages in thread
From: Andreas Schwab @ 2012-07-18  9:52 UTC (permalink / raw)
  To: Chong Yidong; +Cc: 11439, Deniz Dogan

Chong Yidong <cyd@gnu.org> writes:

> Fixed in trunk.  Thanks.

Please don't put unrelated changes in your commits.

Andreas.

-- 
Andreas Schwab, schwab@linux-m68k.org
GPG Key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."





^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#11439: Isearch and ucs-insert strangeness
  2012-07-18  9:52   ` Andreas Schwab
@ 2012-07-18 10:17     ` Juri Linkov
  2012-07-18 11:24       ` Andreas Schwab
  0 siblings, 1 reply; 6+ messages in thread
From: Juri Linkov @ 2012-07-18 10:17 UTC (permalink / raw)
  To: Andreas Schwab; +Cc: 11439, Chong Yidong, Deniz Dogan

>> Fixed in trunk.  Thanks.
>
> Please don't put unrelated changes in your commits.

I'm sorry, this should have been committed with my patch,
but I forgot to include duplicates of docstrings that are
automatically created in dired.el.  Shouldn't dired have
a separate file for autoloads, and not register it
in the repository?





^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#11439: Isearch and ucs-insert strangeness
  2012-07-18 10:17     ` Juri Linkov
@ 2012-07-18 11:24       ` Andreas Schwab
  0 siblings, 0 replies; 6+ messages in thread
From: Andreas Schwab @ 2012-07-18 11:24 UTC (permalink / raw)
  To: Juri Linkov; +Cc: 11439, Chong Yidong, Deniz Dogan

Juri Linkov <juri@jurta.org> writes:

>>> Fixed in trunk.  Thanks.
>>
>> Please don't put unrelated changes in your commits.
>
> I'm sorry, this should have been committed with my patch,

These things are generally handled by Glenn's auto-commits.

Andreas.

-- 
Andreas Schwab, schwab@linux-m68k.org
GPG Key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."





^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2012-07-18 11:24 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-05-08 20:51 bug#11439: Isearch and ucs-insert strangeness Deniz Dogan
2012-05-10 18:20 ` Glenn Morris
2012-07-18  9:29 ` Chong Yidong
2012-07-18  9:52   ` Andreas Schwab
2012-07-18 10:17     ` Juri Linkov
2012-07-18 11:24       ` Andreas Schwab

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).