unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#2381: Python mode: python-shift-left and python-shift-right are not working if the region is inactive
@ 2009-02-19  6:53 ` Guillaume Salagnac
  2009-02-20 16:40   ` bug#2381: marked as done (Python mode: python-shift-left and python-shift-right are not working if the region is inactive) Emacs bug Tracking System
  0 siblings, 1 reply; 2+ messages in thread
From: Guillaume Salagnac @ 2009-02-19  6:53 UTC (permalink / raw)
  To: bug-gnu-emacs; +Cc: Guillaume Salagnac

In Python mode (the one provided by lisp/progmodes/python.el) there  
are two functions that look very handy for indenting/reindenting  
code : python-shift-left and python-shift-right.

According to their documentation string, they can work either on the  
current active region, or on the current line if the region is not  
active. However, this latter feature does not seem to work properly.

Steps to reproduce error: open emacs, type M-x python-mode, type some  
code, and try "C-c <" or "C-c >" with no active region.

A simple fix seems to be achieved by replacing this "(point) (point)"  
default value, which is obviously empty, by  "(line-beginning- 
position) (line-end-position)" in both functions.

Cheers,
-Guillaume



Standard report-emacs-bug gibberish follows :


In GNU Emacs 23.0.60.1 (i486-pc-linux-gnu, GTK+ Version 2.14.3)
  of 2008-10-14 on rothera, modified by Debian
  (emacs-snapshot package, version 1:20081013-1)
Windowing system distributor `The X.Org Foundation', version  
11.0.10502000
configured using `configure  '--build' 'i486-linux-gnu' '--host'  
'i486-linux-gnu' '--prefix=/usr' '--sharedstatedir=/var/lib' '-- 
libexecdir=/usr/lib' '--localstatedir=/var' '--infodir=/usr/share/ 
info' '--mandir=/usr/share/man' '--with-pop=yes' '--enable- 
locallisppath=/etc/emacs-snapshot:/etc/emacs:/usr/local/share/emacs/ 
23.0.60/site-lisp:/usr/local/share/emacs/site-lisp:/usr/share/emacs/ 
23.0.60/site-lisp:/usr/share/emacs/site-lisp' '--with-x=yes' '--with- 
x-toolkit=gtk' 'build_alias=i486-linux-gnu' 'host_alias=i486-linux- 
gnu' 'CFLAGS=-DDEBIAN -DSITELOAD_PURESIZE_EXTRA=5000 -g -O2'  
'LDFLAGS=-g -Wl,--as-needed' 'CPPFLAGS=''

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: en_AU.UTF-8
   value of $XMODIFIERS: nil
   locale-coding-system: utf-8-unix
   default-enable-multibyte-characters: t

Major mode: Python

Minor modes in effect:
   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
   global-auto-composition-mode: t
   auto-composition-mode: t
   auto-encryption-mode: t
   auto-compression-mode: t
   line-number-mode: t
   transient-mark-mode: t

Recent input:
M-x p y t h o n SPC m o d e <return> i f SPC T r u
e : <return> <tab> x = 1 <return> <tab> y = 1 C-c <
M-x r e p o r t - e m a c s - b u g <return>

Recent messages:
For information about GNU Emacs and the GNU system, type C-h C-a.
call-interactively: End of buffer [4 times]








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

* bug#2381: marked as done (Python mode: python-shift-left and  python-shift-right are not working if the region is inactive)
  2009-02-19  6:53 ` bug#2381: Python mode: python-shift-left and python-shift-right are not working if the region is inactive Guillaume Salagnac
@ 2009-02-20 16:40   ` Emacs bug Tracking System
  0 siblings, 0 replies; 2+ messages in thread
From: Emacs bug Tracking System @ 2009-02-20 16:40 UTC (permalink / raw)
  To: martin rudalics

[-- Attachment #1: Type: text/plain, Size: 983 bytes --]


Your message dated Fri, 20 Feb 2009 17:31:43 +0100
with message-id <499EDAEF.5010300@gmx.at>
and subject line Re: bug#2381: Python mode: python-shift-left and python-shift-right are	not working if the region is inactive
has caused the Emacs bug report #2381,
regarding Python mode: python-shift-left and python-shift-right are not working if the region is inactive
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact owner@emacsbugs.donarmstrong.com
immediately.)


-- 
2381: http://emacsbugs.donarmstrong.com/cgi-bin/bugreport.cgi?bug=2381
Emacs Bug Tracking System
Contact owner@emacsbugs.donarmstrong.com with problems

[-- Attachment #2: Type: message/rfc822, Size: 6073 bytes --]

From: Guillaume Salagnac <guillaume.salagnac@gmail.com>
To: bug-gnu-emacs@gnu.org
Cc: Guillaume Salagnac <guillaume.salagnac@gmail.com>
Subject: Python mode: python-shift-left and python-shift-right are not working if the region is inactive
Date: Thu, 19 Feb 2009 16:53:53 +1000
Message-ID: <3D92E094-6B70-4489-A162-A5050842D94C@gmail.com>

In Python mode (the one provided by lisp/progmodes/python.el) there  
are two functions that look very handy for indenting/reindenting  
code : python-shift-left and python-shift-right.

According to their documentation string, they can work either on the  
current active region, or on the current line if the region is not  
active. However, this latter feature does not seem to work properly.

Steps to reproduce error: open emacs, type M-x python-mode, type some  
code, and try "C-c <" or "C-c >" with no active region.

A simple fix seems to be achieved by replacing this "(point) (point)"  
default value, which is obviously empty, by  "(line-beginning- 
position) (line-end-position)" in both functions.

Cheers,
-Guillaume



Standard report-emacs-bug gibberish follows :


In GNU Emacs 23.0.60.1 (i486-pc-linux-gnu, GTK+ Version 2.14.3)
  of 2008-10-14 on rothera, modified by Debian
  (emacs-snapshot package, version 1:20081013-1)
Windowing system distributor `The X.Org Foundation', version  
11.0.10502000
configured using `configure  '--build' 'i486-linux-gnu' '--host'  
'i486-linux-gnu' '--prefix=/usr' '--sharedstatedir=/var/lib' '-- 
libexecdir=/usr/lib' '--localstatedir=/var' '--infodir=/usr/share/ 
info' '--mandir=/usr/share/man' '--with-pop=yes' '--enable- 
locallisppath=/etc/emacs-snapshot:/etc/emacs:/usr/local/share/emacs/ 
23.0.60/site-lisp:/usr/local/share/emacs/site-lisp:/usr/share/emacs/ 
23.0.60/site-lisp:/usr/share/emacs/site-lisp' '--with-x=yes' '--with- 
x-toolkit=gtk' 'build_alias=i486-linux-gnu' 'host_alias=i486-linux- 
gnu' 'CFLAGS=-DDEBIAN -DSITELOAD_PURESIZE_EXTRA=5000 -g -O2'  
'LDFLAGS=-g -Wl,--as-needed' 'CPPFLAGS=''

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: en_AU.UTF-8
   value of $XMODIFIERS: nil
   locale-coding-system: utf-8-unix
   default-enable-multibyte-characters: t

Major mode: Python

Minor modes in effect:
   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
   global-auto-composition-mode: t
   auto-composition-mode: t
   auto-encryption-mode: t
   auto-compression-mode: t
   line-number-mode: t
   transient-mark-mode: t

Recent input:
M-x p y t h o n SPC m o d e <return> i f SPC T r u
e : <return> <tab> x = 1 <return> <tab> y = 1 C-c <
M-x r e p o r t - e m a c s - b u g <return>

Recent messages:
For information about GNU Emacs and the GNU system, type C-h C-a.
call-interactively: End of buffer [4 times]





[-- Attachment #3: Type: message/rfc822, Size: 2616 bytes --]

From: martin rudalics <rudalics@gmx.at>
To: 2381-done@emacsbugs.donarmstrong.com
Cc: Guillaume Salagnac <guillaume.salagnac@gmail.com>
Subject: Re: bug#2381: Python mode: python-shift-left and python-shift-right are	not working if the region is inactive
Date: Fri, 20 Feb 2009 17:31:43 +0100
Message-ID: <499EDAEF.5010300@gmx.at>

 > In Python mode (the one provided by lisp/progmodes/python.el) there are
 > two functions that look very handy for indenting/reindenting code :
 > python-shift-left and python-shift-right.
 >
 > According to their documentation string, they can work either on the
 > current active region, or on the current line if the region is not
 > active. However, this latter feature does not seem to work properly.
 >
 > Steps to reproduce error: open emacs, type M-x python-mode, type some
 > code, and try "C-c <" or "C-c >" with no active region.
 >
 > A simple fix seems to be achieved by replacing this "(point) (point)"
 > default value, which is obviously empty, by  "(line-beginning-position)
 > (line-end-position)" in both functions.

I checked in your suggestion as

	* progmodes/python.el (python-shift-left, python-shift-right):
	When the mark is not active shift the current line.  (Bug#2381)
	Suggested by Guillaume Salagnac <guillaume.salagnac@gmail.com>

Thanks for the report, martin.


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

end of thread, other threads:[~2009-02-20 16:40 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <499EDAEF.5010300@gmx.at>
2009-02-19  6:53 ` bug#2381: Python mode: python-shift-left and python-shift-right are not working if the region is inactive Guillaume Salagnac
2009-02-20 16:40   ` bug#2381: marked as done (Python mode: python-shift-left and python-shift-right are not working if the region is inactive) Emacs bug Tracking System

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).