emacs-bug-tracker
[Top][All Lists]
Advanced

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

[Emacs-bug-tracker] bug#6263: closed ([PATCH] 24.0.50; build fail at dis


From: GNU bug Tracking System
Subject: [Emacs-bug-tracker] bug#6263: closed ([PATCH] 24.0.50; build fail at dispextern.h with LP64 machine)
Date: Wed, 26 May 2010 17:02:02 +0000

Your message dated Wed, 26 May 2010 20:01:38 +0300
with message-id <address@hidden>
and subject line Re: bug#6263: [PATCH] 24.0.50; build fail at dispextern.h with 
LP64 machine
has caused the GNU bug report #6263,
regarding [PATCH] 24.0.50; build fail at dispextern.h with LP64 machine
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
6263: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=6263
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] 24.0.50; build fail at dispextern.h with LP64 machine Date: Tue, 25 May 2010 01:41:59 +0900
I am building 24.0.50 on NetBSD/amd64 and getting
Following problem. It is LP64 defined machine
(EMACS_INT = long)

---------
/export/git-work/emacs/src/xdisp.c: In function 'init_iterator':
/export/git-work/emacs/src/xdisp.c:2604: error: argument 'charpos' doesn't 
match prototype
/export/git-work/emacs/src/dispextern.h:2914: error: prototype declaration
/export/git-work/emacs/src/xdisp.c:2604: error: argument 'bytepos' doesn't 
match prototype
/export/git-work/emacs/src/dispextern.h:2914: error: prototype declaration
gmake[1]: *** [xdisp.o] Error 1
gmake[1]: Leaving directory `/export/git-work/emacs-work/src'
gmake: *** [src] Error 2
address@hidden 01:40:33/100525(..git-work/emacs)% 
---------

It seems to me the patch is necessary:

diff --git a/src/dispextern.h b/src/dispextern.h
index ce8527b..2c2463f 100644
--- a/src/dispextern.h
+++ b/src/dispextern.h
@@ -2911,8 +2911,8 @@ void mark_window_display_accurate P_ ((Lisp_Object, int));
 void redisplay_preserve_echo_area P_ ((int));
 int set_cursor_from_row P_ ((struct window *, struct glyph_row *,
                             struct glyph_matrix *, int, int, int, int));
-void init_iterator P_ ((struct it *, struct window *, int,
-                       int, struct glyph_row *, enum face_id));
+void init_iterator P_ ((struct it *, struct window *, EMACS_INT,
+                       EMACS_INT, struct glyph_row *, enum face_id));
 void init_iterator_to_row_start P_ ((struct it *, struct window *,
                                     struct glyph_row *));
 int get_next_display_element P_ ((struct it *));
---
Makoto Fujiwara



--- End Message ---
--- Begin Message --- Subject: Re: bug#6263: [PATCH] 24.0.50; build fail at dispextern.h with LP64 machine Date: Wed, 26 May 2010 20:01:38 +0300
> Date: Thu, 27 May 2010 00:31:30 +0900
> From: Makoto Fujiwara <address@hidden>
> Cc: 
> 
> I think I had double checked but sorry, It's been
> surely fixed

No need to apologize.  Thanks for reporting this problem.

> please close this report.

Done.


--- End Message ---

reply via email to

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