help-gnu-emacs
[Top][All Lists]
Advanced

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

Re: difficulty entering balance mode


From: Haines Brown
Subject: Re: difficulty entering balance mode
Date: Sat, 25 Jul 2015 06:39:49 -0400
User-agent: Mutt/1.5.21 (2010-09-15)

On Sat, Jul 25, 2015 at 04:02:34AM -0400, Stefan Monnier wrote:
> >      (append '(("\\.bal$" . balance-mode)) auto-mode-alist))
>                          ^
> Should be               \\'

Thanks, Stefan. There seem to be two legitimate versions of this. The
balance.el file says to use:

(autoload 'balance-mode "balance")
   (setq auto-mode-alist
       (append '(("\\.bal$" . balance-mode)) auto-mode-alist))

you and others have said to use:

   (autoload 'balance-mode "balance") ;; takes twice
    (setq auto-mode-alist
       (append '(("\\.bal\\'" . balance-mode)) auto-mode-alist))

both open the balance.el file, given that it requires two commands to do
it. That is, this is not my problem.




reply via email to

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