Mercurial > hg > xemacs-beta
comparison src/lisp-union.h @ 3025:facf3239ba30
[xemacs-hg @ 2005-10-25 11:16:19 by ben]
rename new->new_, convert 'foo to `foo'
EmacsFrame.c, ExternalClient.c, ExternalShell.c, chartab.c, cmdloop.c, compiler.h, console.c, database.c, device-msw.c, device-x.c, device.c, doc.c, dragdrop.c, eval.c, event-msw.c, event-stream.c, events.c, extents.c, file-coding.c, fns.c, frame-tty.c, frame.c, gpmevent.c, gutter.c, hash.c, imgproc.c, indent.c, keymap.c, lisp-union.h, macros.c, malloc.c, marker.c, menubar-x.c, menubar.c, mule-charset.c, number.c, process.c, profile.h, ralloc.c, redisplay.c, select-common.h, select.c, syntax.c, sysfile.h, sysproc.h, systime.h, syswindows.h, toolbar.c, tooltalk.c, tparam.c, unexaix.c, unexalpha.c, unexconvex.c, unexec.c, unexhp9k800.c, unexmips.c, unicode.c, window.c: new -> new_.
'foo -> `foo'.
lwlib-internal.h: redo assert macros to follow lisp.h and not trigger warnings.
lwlib.c, xlwtabs.c: new -> new_.
author | ben |
---|---|
date | Tue, 25 Oct 2005 11:16:49 +0000 |
parents | 64eaceca611d |
children | 78507f684253 |
comparison
equal
deleted
inserted
replaced
3024:b7f26b2f78bd | 3025:facf3239ba30 |
---|---|
1 /* Fundamental definitions for XEmacs Lisp interpreter -- union objects. | 1 /* Fundamental definitions for XEmacs Lisp interpreter -- union objects. |
2 Copyright (C) 1985, 1986, 1987, 1992, 1993, 1994 | 2 Copyright (C) 1985, 1986, 1987, 1992, 1993, 1994 |
3 Free Software Foundation, Inc. | 3 Free Software Foundation, Inc. |
4 Copyright (C) 2002 Ben Wing. | 4 Copyright (C) 2002, 2005 Ben Wing. |
5 | 5 |
6 This file is part of XEmacs. | 6 This file is part of XEmacs. |
7 | 7 |
8 XEmacs is free software; you can redistribute it and/or modify it | 8 XEmacs is free software; you can redistribute it and/or modify it |
9 under the terms of the GNU General Public License as published by the | 9 under the terms of the GNU General Public License as published by the |
71 #endif /* non-valbits are at higher addresses */ | 71 #endif /* non-valbits are at higher addresses */ |
72 | 72 |
73 EMACS_UINT ui; | 73 EMACS_UINT ui; |
74 signed EMACS_INT i; | 74 signed EMACS_INT i; |
75 | 75 |
76 /* This was formerly declared 'void *v' etc. but that causes | 76 /* This was formerly declared `void *v' etc. but that causes |
77 GCC to accept any (yes, any) pointer as the argument of | 77 GCC to accept any (yes, any) pointer as the argument of |
78 a function declared to accept a Lisp_Object. */ | 78 a function declared to accept a Lisp_Object. */ |
79 struct nosuchstruct *v; | 79 struct nosuchstruct *v; |
80 } | 80 } |
81 Lisp_Object; | 81 Lisp_Object; |