emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Mysterious "save abbrevs"?


From: Tak Ota
Subject: Re: Mysterious "save abbrevs"?
Date: Wed, 26 Dec 2001 18:45:16 -0800 (PST)

Sun, 16 Dec 2001 22:50:01 -0700 (MST): Richard Stallman <address@hidden> wrote:

>     (define-abbrev-table 'c-mode-abbrev-table
>       '(("else" "else" c-electric-continued-statement 0)
>       ("while" "while" c-electric-continued-statement 0)))
> 
> The question, though, is what to do about it.
> I don't think we ever want these abbrevs to be saved in
> the user's abbrev file.

How about doing it without leaving a trace?

(let ((abbrevs-changed abbrevs-changed))
  (define-abbrev-table 'c-mode-abbrev-table
    '(("else" "else" c-electric-continued-statement 0)
      ("while" "while" c-electric-continued-statement 0))))

There are 6 places in total for this modification.

-Tak



reply via email to

[Prev in Thread] Current Thread [Next in Thread]