Mercurial > hg > xemacs-beta
annotate src/console-stream-impl.h @ 5294:bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
2010-10-25 Aidan Kehoe <kehoea@parhasard.net>
Add compiler macros and compilation sanity-checking for various
functions that take keywords.
* byte-optimize.el (side-effect-free-fns): #'symbol-value is
side-effect free and not error free.
* bytecomp.el (byte-compile-normal-call): Check keyword argument
lists for sanity; store information about the positions where
keyword arguments start using the new byte-compile-keyword-start
property.
* cl-macs.el (cl-const-expr-val): Take a new optional argument,
cl-not-constant, defaulting to nil, in this function; return it if
the expression is not constant.
(cl-non-fixnum-number-p): Make this into a separate function, we
want to pass it to #'every.
(eql): Use it.
(define-star-compiler-macros): Use the same code to generate the
member*, assoc* and rassoc* compiler macros; special-case some
code in #'add-to-list in subr.el.
(remove, remq): Add compiler macros for these two functions, in
preparation for #'remove being in C.
(define-foo-if-compiler-macros): Transform (remove-if-not ...) calls to
(remove ... :if-not) at compile time, which will be a real win
once the latter is in C.
(define-substitute-if-compiler-macros)
(define-subst-if-compiler-macros): Similarly for these functions.
(delete-duplicates): Change this compiler macro to use
#'plists-equal; if we don't have information about the type of
SEQUENCE at compile time, don't bother attempting to inline the
call, the function will be in C soon enough.
(equalp): Remove an old commented-out compiler macro for this, if
we want to see it it's in version control.
(subst-char-in-string): Transform this to a call to nsubstitute or
nsubstitute, if that is appropriate.
* cl.el (ldiff): Don't call setf here, this makes for a load-time
dependency problem in cl-macs.el
| author | Aidan Kehoe <kehoea@parhasard.net> |
|---|---|
| date | Mon, 25 Oct 2010 13:04:04 +0100 |
| parents | a9c41067dd88 |
| children | 308d34e9f07d |
| rev | line source |
|---|---|
| 872 | 1 /* Define stream specific console, device, and frame object for XEmacs. |
| 2 Copyright (C) 1995 Board of Trustees, University of Illinois. | |
| 3 Copyright (C) 1995 Free Software Foundation, Inc. | |
| 1204 | 4 Copyright (C) 2002 Ben Wing. |
| 872 | 5 |
| 6 This file is part of XEmacs. | |
| 7 | |
| 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 | |
| 10 Free Software Foundation; either version 2, or (at your option) any | |
| 11 later version. | |
| 12 | |
| 13 XEmacs is distributed in the hope that it will be useful, but WITHOUT | |
| 14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
| 15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
| 16 for more details. | |
| 17 | |
| 18 You should have received a copy of the GNU General Public License | |
| 19 along with XEmacs; see the file COPYING. If not, write to | |
| 20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
| 21 Boston, MA 02111-1307, USA. */ | |
| 22 | |
| 23 /* Synched up with: Not in FSF. */ | |
| 24 | |
| 25 /* Written by Ben Wing. */ | |
| 26 | |
| 27 #ifndef INCLUDED_console_stream_impl_h_ | |
| 28 #define INCLUDED_console_stream_impl_h_ | |
| 29 | |
| 30 #include "console-impl.h" | |
| 31 #include "console-stream.h" | |
| 32 | |
| 33 DECLARE_CONSOLE_TYPE (stream); | |
| 34 | |
| 35 struct stream_console | |
| 36 { | |
| 3092 | 37 #ifdef NEW_GC |
|
5127
a9c41067dd88
more cleanups, terminology clarification, lots of doc work
Ben Wing <ben@xemacs.org>
parents:
5120
diff
changeset
|
38 NORMAL_LISP_OBJECT_HEADER header; |
| 3092 | 39 #endif /* NEW_GC */ |
| 872 | 40 FILE *in; |
| 41 FILE *out; | |
| 42 FILE *err; | |
| 43 int needs_newline; | |
| 1204 | 44 Lisp_Object instream; |
| 872 | 45 }; |
| 46 | |
| 3092 | 47 #ifdef NEW_GC |
| 48 typedef struct stream_console Lisp_Stream_Console; | |
| 49 | |
|
5118
e0db3c197671
merge up to latest default branch, doesn't compile yet
Ben Wing <ben@xemacs.org>
parents:
3092
diff
changeset
|
50 DECLARE_LISP_OBJECT (stream_console, Lisp_Stream_Console); |
| 3092 | 51 |
| 52 #define XSTREAM_CONSOLE(x) \ | |
| 53 XRECORD (x, stream_console, Lisp_Stream_Console) | |
| 54 #define wrap_stream_console(p) wrap_record (p, stream_console) | |
| 55 #define STREAM_CONSOLE_P(x) RECORDP (x, stream_console) | |
| 56 #endif /* NEW_GC */ | |
| 57 | |
| 872 | 58 #define CONSOLE_STREAM_DATA(con) CONSOLE_TYPE_DATA (con, stream) |
| 59 | |
| 60 #endif /* INCLUDED_console_stream_impl_h_ */ |
