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

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

Re: auto-fill in message mode filling with prefix "> "


From: Alan Mackenzie
Subject: Re: auto-fill in message mode filling with prefix "> "
Date: Wed, 3 Jan 2018 19:26:44 +0000 (UTC)
User-agent: tin/2.4.1-20161224 ("Daill") (UNIX) (FreeBSD/11.1-RELEASE-p4 (amd64))

HASM <hasm@example.invalid> wrote:
> Eric S Fraga <e.fraga@ucl.ac.uk> writes:

>> filladapt.el:79:1:Error: Loading ‘nil’: old-style backquotes detected!
>> This is with emacs snapshot version 2:20171231 on buster.
>> The same package compiles fine with emacs25 however.

> On my emacs 25.3.1, filladapt.el complains of the backquotes problem,
> but compiles (after I fix another small problem, elsewhere) and seems to
> run.

> Don't know enough elisp to fully replace the `, construct here
>   (defmacro defcustom (var value doc &rest args) 
>      (` (defvar (, var) (, value) (, doc))))))
> with non-deprecated code.

This is actually simple - you don't need to know lisp.

Replace (` x) with `x.
Replace (, y) with ,y.

So that entire last line should become:

    `(defvar ,var ,value ,doc))))

.

> -- HASM

-- 
Alan Mackenzie (Nuremberg, Germany).



reply via email to

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