From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Tyler Smith Newsgroups: gmane.emacs.help Subject: Re: Emacs . How can I associate *.cu files as cc mode as a default ? Date: 20 Sep 2007 23:17:12 GMT Organization: Sedgeboy Inc. Message-ID: References: <1190160650.850759.138290@50g2000hsm.googlegroups.com> <1190164199.912592.37280@r29g2000hsg.googlegroups.com> <1190165135.154174.99310@g4g2000hsf.googlegroups.com> <1190167469.762189.227620@n39g2000hsh.googlegroups.com> NNTP-Posting-Host: lo.gmane.org X-Trace: sea.gmane.org 1190331639 6009 80.91.229.12 (20 Sep 2007 23:40:39 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 20 Sep 2007 23:40:39 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Sep 21 01:40:39 2007 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 1IYVdO-0002wF-A2 for geh-help-gnu-emacs@m.gmane.org; Fri, 21 Sep 2007 01:40:38 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IYVdM-0003iZ-BM for geh-help-gnu-emacs@m.gmane.org; Thu, 20 Sep 2007 19:40:36 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!postnews.google.com!news2.google.com!border1.nntp.dca.giganews.com!nntp.giganews.com!nx02.iad01.newshosting.com!newshosting.com!post02.iad01!post01.iad01!news.aliant.net!not-for-mail Original-Newsgroups: gnu.emacs.help User-Agent: slrn/0.9.8.1pl1 (Debian) Original-Lines: 36 Original-NNTP-Posting-Host: 142.68.246.176 Original-X-Complaints-To: abuse@aliant.net Original-Xref: shelby.stanford.edu gnu.emacs.help:152193 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:47704 Archived-At: On 2007-09-19, Stefan Monnier wrote: >> Reading the manual, I see that find-file-hooks is now obsolete - will >> find-file-hook be obsolete also? > > No: find-file-hooks is obsolete only because it was renamed to find-file-hook. > >> What should I replace the following >> code with: > >> (defun my-find-file-hook() >> (let ((fn (buffer-file-name))) >> (when (string-match "latex2rtf" fn) >> (set-variable 'tab-width 4)))) >> (add-hook 'find-file-hook 'my-find-file-hook) > > You can keep it as-is. Although I'd use (setq tab-width 4) instead of > set-variable (set-variable is meant for interactive use, not that it matters > in this case). > > Actually I'd probably do it that way instead: > > (defun my-latex2rtf-c-mode () > (c-mode) > (setq tab-width 4)) > > (add-to-list 'auto-mode-alist > '("/latex2rtf/.*\\.c\\'" . my-latex2rtf-c-mode)) > Actually, that's closer to what I really want. Thanks for the suggestion! And to Lowell for your help too. Cheers, Tyler