From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Karl Chen Newsgroups: gmane.emacs.devel Subject: abbrev output missing newline Date: Mon, 03 Aug 2009 18:14:17 -0400 Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1249349953 17742 80.91.229.12 (4 Aug 2009 01:39:13 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 4 Aug 2009 01:39:13 +0000 (UTC) To: Emacs Developement List Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Aug 04 03:39:06 2009 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1MY8zZ-0003YV-Rr for ged-emacs-devel@m.gmane.org; Tue, 04 Aug 2009 03:39:06 +0200 Original-Received: from localhost ([127.0.0.1]:40530 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MY8zZ-0002wS-9m for ged-emacs-devel@m.gmane.org; Mon, 03 Aug 2009 21:39:05 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MY5nb-0002bx-8b for emacs-devel@gnu.org; Mon, 03 Aug 2009 18:14:31 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MY5nW-0002RJ-C9 for emacs-devel@gnu.org; Mon, 03 Aug 2009 18:14:29 -0400 Original-Received: from [199.232.76.173] (port=36998 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MY5nW-0002PE-24 for emacs-devel@gnu.org; Mon, 03 Aug 2009 18:14:26 -0400 Original-Received: from honk.quarl.org ([173.45.230.109]:36211) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1MY5nV-0005eB-GN for emacs-devel@gnu.org; Mon, 03 Aug 2009 18:14:25 -0400 Original-Received: by honk.quarl.org (Postfix, from userid 1000) id AB5581C8214; Mon, 3 Aug 2009 18:14:17 -0400 (EDT) X-Quack-Archive: 1 X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:113633 Archived-At: In Emacs 23.1, in my .abbrev_defs, I'm getting a missing newline between the "define-abbrev-table" line and the first abbrev: (define-abbrev-table 'global-abbrev-table '( ("aagain" "again" nil 0) ("aaginst" "against" nil 0) ("abberviate" "abbreviate" nil 0) This patch works for me. --- abbrev.el 2009-08-03 18:05:51.805815015 -0400 +++ abbrev.el 2009-08-03 18:05:51.799490826 -0400 @@ -887,7 +887,7 @@ (insert "\n\n")) (insert "(define-abbrev-table '") (prin1 name) - (insert " '(") + (insert " '(\n") (mapc 'abbrev--write symbols) (insert " ))\n\n")) nil)))