From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Miles Bader Newsgroups: gmane.emacs.devel Subject: C-u prefix behavior of TAB broken Date: Mon, 17 Dec 2007 07:07:15 +0900 Message-ID: <874peijnu4.fsf@catnip.gol.com> Reply-To: Miles Bader NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1197842859 10663 80.91.229.12 (16 Dec 2007 22:07:39 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 16 Dec 2007 22:07:39 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Dec 16 23:07:50 2007 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1J41eH-0001JN-Dl for ged-emacs-devel@m.gmane.org; Sun, 16 Dec 2007 23:07:49 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1J41dy-0001oX-Bg for ged-emacs-devel@m.gmane.org; Sun, 16 Dec 2007 17:07:30 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1J41dt-0001lv-Ri for emacs-devel@gnu.org; Sun, 16 Dec 2007 17:07:25 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1J41ds-0001kC-BZ for emacs-devel@gnu.org; Sun, 16 Dec 2007 17:07:25 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1J41ds-0001k9-6n for emacs-devel@gnu.org; Sun, 16 Dec 2007 17:07:24 -0500 Original-Received: from smtp02.dentaku.gol.com ([203.216.5.72]) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1J41dn-0003W4-Hz; Sun, 16 Dec 2007 17:07:20 -0500 Original-Received: from 203-216-100-114.dsl.gol.ne.jp ([203.216.100.114] helo=catnip.gol.com) by smtp02.dentaku.gol.com with esmtpa (Dentaku) id 1J41dk-0007Tz-Jt; Mon, 17 Dec 2007 07:07:16 +0900 Original-Received: by catnip.gol.com (Postfix, from userid 1000) id 655012FF7; Mon, 17 Dec 2007 07:07:15 +0900 (JST) System-Type: i686-pc-linux-gnu Original-Lines: 37 X-Abuse-Complaints: abuse@gol.com X-detected-kernel: by monty-python.gnu.org: Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:85195 Archived-At: Until the recent changes to the default TAB command, it used to be that using a C-u prefix with TAB (in a programming language mode) would indent the entire following form to reflect the change in indentation (where the form selected was whatever the sexp commands would select -- e.g. an entire brace-delimited code block). This was a very handy feature, but doesn't work anymore. For instance if you place the cursor before "(when" in the following elisp code: (defun test (flag) (when flag (format "hello"))) and hit TAB, the result _used_ to be: (defun test (flag) (when flag (format "hello"))) But now it just gives you: (defun test (flag) (when flag (format "hello"))) [I don't know exactly _where_ this feature was implemented, but it worked at least in lisp mode and the various C related modes.] Thanks, -Miles -- "Though they may have different meanings, the cries of 'Yeeeee-haw!' and 'Allahu akbar!' are, in spirit, not actually all that different."