From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Alan Mackenzie Newsgroups: gmane.emacs.help Subject: Re: auto-fill in message mode filling with prefix "> " Date: Wed, 3 Jan 2018 19:26:44 +0000 (UTC) Organization: muc.de e.V. Message-ID: References: <87zi5v8fq0.fsf@hillenius.net> <871sj6bzep.fsf@127.0.0.1> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Trace: blaine.gmane.org 1515007714 19641 195.159.176.226 (3 Jan 2018 19:28:34 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Wed, 3 Jan 2018 19:28:34 +0000 (UTC) Injection-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)) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Jan 03 20:28:30 2018 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eWoiD-0004pQ-1e for geh-help-gnu-emacs@m.gmane.org; Wed, 03 Jan 2018 20:28:29 +0100 Original-Received: from localhost ([::1]:34211 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eWokC-0001YQ-1r for geh-help-gnu-emacs@m.gmane.org; Wed, 03 Jan 2018 14:30:32 -0500 Original-Path: usenet.stanford.edu!goblin3!goblin.stu.neva.ru!news.tu-darmstadt.de!news.muc.de!.POSTED.192.168.0.4!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Injection-Info: news.muc.de; posting-host="192.168.0.4"; logging-data="71632"; mail-complaints-to="news-admin@muc.de" Original-Xref: usenet.stanford.edu gnu.emacs.help:221436 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: "help-gnu-emacs" Xref: news.gmane.org gmane.emacs.help:115551 Archived-At: HASM wrote: > Eric S Fraga writes: >> filladapt.el:79:1:Error: Loading =E2=80=98nil=E2=80=99: old-style back= quotes 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 t= o > run. > Don't know enough elisp to fully replace the `, construct here > (defmacro defcustom (var value doc &rest args)=20 > (` (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 --=20 Alan Mackenzie (Nuremberg, Germany).