From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: =?ISO-8859-15?Q?Jan_Dj=E4rv?= Newsgroups: gmane.emacs.devel Subject: Re: Please install and ack Date: Sun, 16 Sep 2007 10:56:39 +0200 Message-ID: <46ECEFC7.3030606@swipnet.se> References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1189933038 10422 80.91.229.12 (16 Sep 2007 08:57:18 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 16 Sep 2007 08:57:18 +0000 (UTC) Cc: emacs-devel@gnu.org To: rms@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Sep 16 10:57:16 2007 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 1IWpwJ-0003e9-Aa for ged-emacs-devel@m.gmane.org; Sun, 16 Sep 2007 10:57:15 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IWpwI-0000c4-D3 for ged-emacs-devel@m.gmane.org; Sun, 16 Sep 2007 04:57:14 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IWpwD-0000Yn-BW for emacs-devel@gnu.org; Sun, 16 Sep 2007 04:57:09 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IWpwC-0000XT-Ii for emacs-devel@gnu.org; Sun, 16 Sep 2007 04:57:08 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IWpwC-0000X8-9e for emacs-devel@gnu.org; Sun, 16 Sep 2007 04:57:08 -0400 Original-Received: from av7-2-sn3.vrr.skanova.net ([81.228.9.182]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1IWpw7-0003kG-RI; Sun, 16 Sep 2007 04:57:04 -0400 Original-Received: by av7-2-sn3.vrr.skanova.net (Postfix, from userid 502) id B459138129; Sun, 16 Sep 2007 10:55:59 +0200 (CEST) Original-Received: from smtp3-1-sn3.vrr.skanova.net (smtp3-1-sn3.vrr.skanova.net [81.228.9.101]) by av7-2-sn3.vrr.skanova.net (Postfix) with ESMTP id A0EDE37E4E; Sun, 16 Sep 2007 10:55:59 +0200 (CEST) Original-Received: from husetbladh.homeip.net (90-231-102-24-no59.tbcn.telia.com [90.231.102.24]) by smtp3-1-sn3.vrr.skanova.net (Postfix) with ESMTP id B7F4C37E44; Sun, 16 Sep 2007 10:57:02 +0200 (CEST) User-Agent: Thunderbird 1.5.0.13 (X11/20070824) In-Reply-To: X-Detected-Kernel: Linux 2.4-2.6 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:79023 Archived-At: Richard Stallman skrev: > These are tiny changes by "Peter O'Gorman" > . > Would someone please install them? Ack. Jan D. > > > Index: src/xterm.c > =================================================================== > --- src/xterm.c.orig 2007-05-25 12:43:35.000000000 +0000 > +++ src/xterm.c 2007-08-31 03:43:32.106444418 +0000 > @@ -155,7 +155,9 @@ > #endif > #endif > > +#ifndef abs > #define abs(x) ((x) < 0 ? -(x) : (x)) > +#endif > > /* Default to using XIM if available. */ > #ifdef USE_XIM > Index: src/keyboard.c > =================================================================== > --- src/keyboard.c.orig 2007-04-01 21:54:54.000000000 +0000 > +++ src/keyboard.c 2007-08-31 03:43:32.291971223 +0000 > @@ -112,7 +112,9 @@ > #define KBD_BUFFER_SIZE 4096 > #endif /* No X-windows */ > > +#ifndef abs > #define abs(x) ((x) >= 0 ? (x) : -(x)) > +#endif > > /* Following definition copied from eval.c */ > > > =================================================================== > --- src/gtkutil.c.orig 2007-05-14 14:56:31.000000000 +0000 > +++ src/gtkutil.c 2007-09-03 20:58:27.261561563 +0000 > @@ -1403,8 +1403,8 @@ > { > Lisp_Object file; > struct gcpro gcpro1; > - GCPRO1 (file); > char *utf8_filename; > + GCPRO1 (file); > > file = build_string (default_filename); > > > This should have -lBSD, but that library is said to make > Index: src/frame.h > =================================================================== > --- src/frame.h.orig 2007-01-21 04:18:16.000000000 +0000 > +++ src/frame.h 2007-09-06 18:18:37.784302154 +0000 > @@ -1036,7 +1036,7 @@ > FULLSCREEN_WIDTH = 1, > FULLSCREEN_HEIGHT = 2, > FULLSCREEN_BOTH = 3, > - FULLSCREEN_WAIT = 4, > + FULLSCREEN_WAIT = 4 > }; > > > Index: src/termhooks.h > =================================================================== > --- src/termhooks.h.orig 2007-01-14 03:24:37.000000000 +0000 > +++ src/termhooks.h 2007-09-06 18:17:17.922589738 +0000 > @@ -331,7 +331,7 @@ > > /* Queued from XTread_socket when session manager sends > save yourself before shutdown. */ > - SAVE_SESSION_EVENT, > + SAVE_SESSION_EVENT > > #ifdef MAC_OS > /* Generated when an Apple event, a HICommand event, or a Services > @@ -340,7 +340,7 @@ > symbols, respectively. Member `arg' is a Lisp object converted > from the received Apple event. Parameters for non-Apple events > are converted to those in Apple events. */ > - MAC_APPLE_EVENT > + ,MAC_APPLE_EVENT > #endif > }; > > Index: src/xfaces.c > =================================================================== > --- src/xfaces.c.orig 2007-02-14 15:47:51.000000000 +0000 > +++ src/xfaces.c 2007-09-06 18:17:56.728517424 +0000 > @@ -263,9 +263,9 @@ > #endif /* HAVE_X_WINDOWS */ > > #include > - > +#ifndef abs > #define abs(X) ((X) < 0 ? -(X) : (X)) > - > +#endif > /* Number of pt per inch (from the TeXbook). */ > > #define PT_PER_INCH 72.27 > > > _______________________________________________ > Emacs-devel mailing list > Emacs-devel@gnu.org > http://lists.gnu.org/mailman/listinfo/emacs-devel