From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Kevin Rodgers Newsgroups: gmane.emacs.help Subject: Re: turn on only one option of whitespace-mode? Date: Mon, 04 May 2009 07:07:16 -0600 Message-ID: References: <78188a4c-6155-4394-aca9-066a5ed31979@b7g2000pre.googlegroups.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1241442497 7121 80.91.229.12 (4 May 2009 13:08:17 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 4 May 2009 13:08:17 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon May 04 15:08:08 2009 Return-path: Envelope-to: geh-help-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 1M0xtq-0006vV-9Q for geh-help-gnu-emacs@m.gmane.org; Mon, 04 May 2009 15:08:03 +0200 Original-Received: from localhost ([127.0.0.1]:40765 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1M0xtp-0003ef-Qy for geh-help-gnu-emacs@m.gmane.org; Mon, 04 May 2009 09:08:01 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1M0xtS-0003bk-MQ for help-gnu-emacs@gnu.org; Mon, 04 May 2009 09:07:38 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1M0xtN-0003TB-JY for help-gnu-emacs@gnu.org; Mon, 04 May 2009 09:07:37 -0400 Original-Received: from [199.232.76.173] (port=41303 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1M0xtN-0003Sq-EP for help-gnu-emacs@gnu.org; Mon, 04 May 2009 09:07:33 -0400 Original-Received: from mx20.gnu.org ([199.232.41.8]:32295) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1M0xtM-0001Xh-U3 for help-gnu-emacs@gnu.org; Mon, 04 May 2009 09:07:33 -0400 Original-Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1M0xtJ-000763-GL for help-gnu-emacs@gnu.org; Mon, 04 May 2009 09:07:29 -0400 Original-Received: from list by ciao.gmane.org with local (Exim 4.43) id 1M0xtF-0003AH-5r for help-gnu-emacs@gnu.org; Mon, 04 May 2009 13:07:26 +0000 Original-Received: from c-67-190-36-32.hsd1.co.comcast.net ([67.190.36.32]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 04 May 2009 13:07:20 +0000 Original-Received: from kevin.d.rodgers by c-67-190-36-32.hsd1.co.comcast.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 04 May 2009 13:07:20 +0000 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 47 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: c-67-190-36-32.hsd1.co.comcast.net User-Agent: Thunderbird 2.0.0.21 (Macintosh/20090302) In-Reply-To: <78188a4c-6155-4394-aca9-066a5ed31979@b7g2000pre.googlegroups.com> X-Detected-Operating-System: by mx20.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:64174 Archived-At: Kiwon Um wrote: > Hello? One question~ > How can I turn on only one option of whitespace-mode e.g. lines-tail? > I cannot find any customizing field for this. (defcustom whitespace-check-leading-whitespace t "Flag to check leading whitespace. This is the global for the system. It can be overridden by setting a buffer local variable `whitespace-check-buffer-leading'." :type 'boolean :group 'whitespace) (defcustom whitespace-check-trailing-whitespace t "Flag to check trailing whitespace. This is the global for the system. It can be overridden by setting a buffer local variable `whitespace-check-buffer-trailing'." :type 'boolean :group 'whitespace) (defcustom whitespace-check-spacetab-whitespace t "Flag to check space followed by a TAB. This is the global for the system. It can be overridden by setting a buffer local variable `whitespace-check-buffer-spacetab'." :type 'boolean :group 'whitespace) (defcustom whitespace-check-indent-whitespace indent-tabs-mode "Flag to check indentation whitespace. This is the global for the system. It can be overridden by setting a buffer local variable `whitespace-check-buffer-indent'." :type 'boolean :group 'whitespace) (defcustom whitespace-check-ateol-whitespace t "Flag to check end-of-line whitespace. This is the global for the system. It can be overridden by setting a buffer local variable `whitespace-check-buffer-ateol'." :type 'boolean :group 'whitespace) -- Kevin Rodgers Denver, Colorado, USA