From: Richard G Riley <rileyrgdev@googlemail.com>
To: help-gnu-emacs@gnu.org
Subject: Re: Emacs . How can I associate *.cu files as cc mode as a default ?
Date: Wed, 19 Sep 2007 17:13:22 +0200 [thread overview]
Message-ID: <jtq7s4-k28.ln1@news.individual.net> (raw)
In-Reply-To: 1190167469.762189.227620@n39g2000hsh.googlegroups.com
Mike H <hspnew@gmail.com> writes:
> On Sep 18, 10:01 pm, Tyler Smith <tyler.sm...@mail.mcgill.ca> wrote:
>> On 2007-09-19, Mike H <hsp...@gmail.com> wrote:
>>
>> > Just one thing ,
>>
>> > When I put those scripts in, and when I open *.cu files,
>> > I get the following...
>>
>> > Symbol's function definition is void
>>
>> It should be (c-mode), not (cc-mode). The following works for
>> me:
>>
>> (defun my-find-file-hook()
>> (let ((fn (buffer-file-name)))
>> (when (string-match "\\.cu$" fn)
>> (c-mode))))
>> (add-hook 'find-file-hooks 'my-find-file-hook)
>>
>> Tyler
>
>
> Thanks a lot !! it works now
See the other reply. It is a better way:
(add-to-list 'auto-mode-alist '("\\.cu$" . c-mode))
find-file-hooks is obsolete in newer versions of emacs.
next prev parent reply other threads:[~2007-09-19 15:13 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-09-19 0:10 Emacs . How can I associate *.cu files as cc mode as a default ? Mike H
2007-09-19 0:28 ` Tyler Smith
2007-09-19 1:09 ` Mike H
2007-09-19 1:25 ` Mike H
2007-09-19 2:01 ` Tyler Smith
2007-09-19 2:04 ` Mike H
2007-09-19 15:13 ` Richard G Riley [this message]
2007-09-19 15:47 ` Tyler Smith
2007-09-19 16:15 ` Gordon Beaton
2007-09-19 17:55 ` Tyler Smith
2007-09-19 19:14 ` Lowell Gilbert
2007-09-19 19:46 ` Stefan Monnier
2007-09-20 23:17 ` Tyler Smith
2007-09-19 6:24 ` Gordon Beaton
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=jtq7s4-k28.ln1@news.individual.net \
--to=rileyrgdev@googlemail.com \
--cc=help-gnu-emacs@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).