From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: ishi soichi Newsgroups: gmane.emacs.help Subject: indent for css-mode Date: Wed, 30 Oct 2013 11:14:08 +0900 Message-ID: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: ger.gmane.org 1383099256 29826 80.91.229.3 (30 Oct 2013 02:14:16 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 30 Oct 2013 02:14:16 +0000 (UTC) To: "help-gnu-emacs@gnu.org" Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Oct 30 03:14:21 2013 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1VbLIb-0002iN-Hp for geh-help-gnu-emacs@m.gmane.org; Wed, 30 Oct 2013 03:14:21 +0100 Original-Received: from localhost ([::1]:50185 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VbLIb-00081L-0s for geh-help-gnu-emacs@m.gmane.org; Tue, 29 Oct 2013 22:14:21 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:37267) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VbLIS-00081G-1i for help-gnu-emacs@gnu.org; Tue, 29 Oct 2013 22:14:13 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VbLIP-0003eQ-DV for help-gnu-emacs@gnu.org; Tue, 29 Oct 2013 22:14:11 -0400 Original-Received: from mail-ve0-x236.google.com ([2607:f8b0:400c:c01::236]:55281) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VbLIP-0003eG-7t for help-gnu-emacs@gnu.org; Tue, 29 Oct 2013 22:14:09 -0400 Original-Received: by mail-ve0-f182.google.com with SMTP id c14so546884vea.13 for ; Tue, 29 Oct 2013 19:14:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=4yTYCFZkLKBOVKeTQg4WU1zyXQVyHrAFoQGTldPrQuQ=; b=C8+GzFXQJ4amv8l5psmW8F+bDTyODVRxwdEyWg4VEMpstyGnL9VT1ry8X9z2y9mNey 8elSEPI3qpZkzPxdfolKdkC6j10RulGtsPnRblnJQzrgfkVkI25CWAPM9kvSxPVRDC+2 X/84YbYzdC/D0tLMDhDP+zj10N4L3NAdbBsMd1XB3lX2WOeXfZj1ehyXca7BB1PfPRR/ 4aEfgnsJqps5NHMNUMPN/X7hJ4MnvLcDIxXZteDBcCHXVyrEgk+0OpyXZjwlqZS3TlQ3 7MX8s+Nbf8jtsUhwb7z9JzuI4RMHIcYsAgbs+K55dnf1HLEne6oiQB2NuVyWkGao13kA x5yA== X-Received: by 10.52.37.69 with SMTP id w5mr1147645vdj.32.1383099248884; Tue, 29 Oct 2013 19:14:08 -0700 (PDT) Original-Received: by 10.58.67.104 with HTTP; Tue, 29 Oct 2013 19:14:08 -0700 (PDT) X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:400c:c01::236 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:94261 Archived-At: Emacs24.3 I am trying to set the indent level of css-mode to 2 spaces. ;; css-mode (add-hook 'css-mode-hook '(lambda() (setq c-basic-offset 2) (setq indent-tabs-mode nil))) does not do as I want it to. css-mode is the default one that comes with Emacs24. Could anyone help me out?