From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Michael Linck Newsgroups: gmane.emacs.bugs Subject: indent tabs mode appears to be broken in 22.1 Date: Thu, 21 Feb 2008 12:38:50 -0700 Message-ID: <1203622730.10866.34.camel@mike-desktop.boulder.api.local> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1203649184 11409 80.91.229.12 (22 Feb 2008 02:59:44 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 22 Feb 2008 02:59:44 +0000 (UTC) To: bug-gnu-emacs@gnu.org Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Fri Feb 22 04:00:09 2008 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1JSO8u-0000Ax-Fu for geb-bug-gnu-emacs@m.gmane.org; Fri, 22 Feb 2008 04:00:08 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JSO8P-0001Ty-DX for geb-bug-gnu-emacs@m.gmane.org; Thu, 21 Feb 2008 21:59:37 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JSHGi-00040A-Jl for bug-gnu-emacs@gnu.org; Thu, 21 Feb 2008 14:39:44 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JSHGi-0003zo-31 for bug-gnu-emacs@gnu.org; Thu, 21 Feb 2008 14:39:44 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JSHGh-0003zl-T6 for bug-gnu-emacs@gnu.org; Thu, 21 Feb 2008 14:39:43 -0500 Original-Received: from mx01.den.sysshep.com ([216.87.69.82] helo=vw-den-ap03-p.den.api.local) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1JSHGg-0000pI-V1 for bug-gnu-emacs@gnu.org; Thu, 21 Feb 2008 14:39:43 -0500 Original-Received: from [192.168.1.199] (boulder.absolute-performance.com [69.15.81.122] (may be forged)) by vw-den-ap03-p.den.api.local (8.13.1/8.13.1) with ESMTP id m1LJdeU3026448 for ; Thu, 21 Feb 2008 12:39:40 -0700 X-Mailer: Evolution 2.12.3 (2.12.3-1.fc8) X-detected-kernel: by monty-python.gnu.org: Linux 2.6, seldom 2.4 (older, 4) X-Mailman-Approved-At: Thu, 21 Feb 2008 21:59:33 -0500 X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.bugs:17557 Archived-At: Intro: I loathe tabs Problem: My .emacs contains "(setq-default indent-tabs-mode nil)" globally and again in cmode " (defun my-c-mode-common-hook () ;; my customizations for all of c-mode and related modes (c-set-offset 'substatement-open 0) ;; other customizations can go here (setq c-basic-offset 2) (setq-default indent-tabs-mode nil) ; (c-toggle-auto-hungry-state 1) (c-toggle-hungry-state 1) ) " How come when I select and then indent a buffer, it uses tabs? Has it always done that? I seem to recall old versions of emacs not giving me this problem. Seems pretty awful. Also, this version of emacs seems to crash a lot. Any time you click the mouse into the little action text field at the bottom of the emacs window, there seems to be a fairly high likelyhood of it just folding up instantly. But if you're going to fix one first, I actually think the tab thing is far more annoying :) mike