GNU bug report logs - #17829
24.4.50; `C-t' in empty minibuffer traps user in read-only text

Previous Next

Package: emacs;

Reported by: Drew Adams <drew.adams <at> oracle.com>

Date: Sat, 21 Jun 2014 17:08:01 UTC

Severity: normal

Fixed in version 24.4.50

Done: Juri Linkov <juri <at> jurta.org>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 17829 in the body.
You can then email your comments to 17829 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to bug-gnu-emacs <at> gnu.org:
bug#17829; Package emacs. (Sat, 21 Jun 2014 17:08:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Drew Adams <drew.adams <at> oracle.com>:
New bug report received and forwarded. Copy sent to bug-gnu-emacs <at> gnu.org. (Sat, 21 Jun 2014 17:08:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Drew Adams <drew.adams <at> oracle.com>
To: bug-gnu-emacs <at> gnu.org
Subject: 24.4.50; `C-t' in empty minibuffer traps user in read-only text
Date: Sat, 21 Jun 2014 10:07:04 -0700 (PDT)
emacs -Q

`C-t' is `transpose-chars'. 

`M-x C-t' gives you a "Text is read-only" error, and it moves point
backward into the minibuffer prompt.  Repeating it does not move point
further backward but continues to raise the error.

Trying to type text then results in the same error message.  The user
can become confused, not realizing that point is in fact inside the
prompt area.  S?he can then use `C-f' to move back out of the prompt
area, but `C-t' should be smarter.

`transpose-chars' should presumably limit itself to field motion, or
should in some other way take such a situation into account.

In GNU Emacs 24.4.50.1 (i686-pc-mingw32)
 of 2014-06-17 on ODIEONE
Bzr revision: 117359 monnier <at> iro.umontreal.ca-20140617193358-2t1nl1te9gc2mqrx
Windowing system distributor `Microsoft Corp.', version 6.1.7601
Configured using:
 `configure --prefix=/c/Devel/emacs/snapshot/trunk
 --enable-checking=yes,glyphs 'CFLAGS=-O0 -g3'
 LDFLAGS=-Lc:/Devel/emacs/lib 'CPPFLAGS=-DGC_MCHECK=1
 -Ic:/Devel/emacs/include''




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#17829; Package emacs. (Sat, 21 Jun 2014 22:08:01 GMT) Full text and rfc822 format available.

Message #8 received at 17829 <at> debbugs.gnu.org (full text, mbox):

From: Juri Linkov <juri <at> jurta.org>
To: Drew Adams <drew.adams <at> oracle.com>
Cc: 17829 <at> debbugs.gnu.org
Subject: Re: bug#17829: 24.4.50;
 `C-t' in empty minibuffer traps user in read-only text
Date: Sun, 22 Jun 2014 01:01:04 +0300
> `M-x C-t' gives you a "Text is read-only" error, and it moves point
> backward into the minibuffer prompt.  Repeating it does not move point
> further backward but continues to raise the error.

I often get into the same trap when mistyping C-t instead of C-y
to yank text into the minibuffer.  This is one of possible fixes:

=== modified file 'lisp/simple.el'
--- lisp/simple.el	2014-01-31 06:42:29 +0000
+++ lisp/simple.el	2014-06-21 21:54:06 +0000
@@ -5902,7 +5902,8 @@ (defun transpose-chars (arg)
 and drag it forward past ARG other characters (backward if ARG negative).
 If no argument and at end of line, the previous two chars are exchanged."
   (interactive "*P")
-  (and (null arg) (eolp) (forward-char -1))
+  (when (and (null arg) (eolp) (not (get-text-property (1- (point)) 'read-only)))
+    (forward-char -1))
   (transpose-subr 'forward-char (prefix-numeric-value arg)))
 
 (defun transpose-words (arg)




Reply sent to Juri Linkov <juri <at> jurta.org>:
You have taken responsibility. (Tue, 08 Jul 2014 08:29:02 GMT) Full text and rfc822 format available.

Notification sent to Drew Adams <drew.adams <at> oracle.com>:
bug acknowledged by developer. (Tue, 08 Jul 2014 08:29:03 GMT) Full text and rfc822 format available.

Message #13 received at 17829-done <at> debbugs.gnu.org (full text, mbox):

From: Juri Linkov <juri <at> jurta.org>
To: Drew Adams <drew.adams <at> oracle.com>
Cc: 17829-done <at> debbugs.gnu.org
Subject: Re: bug#17829: 24.4.50;
 `C-t' in empty minibuffer traps user in read-only text
Date: Tue, 08 Jul 2014 11:27:59 +0300
Version: 24.4.50

> `M-x C-t' gives you a "Text is read-only" error, and it moves point
> backward into the minibuffer prompt.  Repeating it does not move point
> further backward but continues to raise the error.

Fixed in the trunk since it's not a regression.




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Tue, 05 Aug 2014 11:24:03 GMT) Full text and rfc822 format available.

This bug report was last modified 9 years and 276 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.