view lib-src/ellcc.h.in @ 4942:46f0df723e09

(for main branch) Indent all `with-*' expressions correctly -------------------- ChangeLog entries follow: -------------------- lisp/ChangeLog addition: 2010-01-22 Ben Wing <ben@xemacs.org> * lisp-mode.el: * lisp-mode.el (lisp-indent-function): If the function begins with `with-', assume it is a macro or special form whose last argument is a body. Call `lisp-indent-specform' with a flag indicating that it should indent all arguments as a body instead of with normal (full) indent. * lisp-mode.el (lisp-indent-specform): Add an optional flag argument indicating that all non-distinguished arguments, not just the first, should be indented as a body. This is useful when the number of distinguished (i.e. pre-body) arguments isn't known, and is used for this purpose by `lisp-indent-function'.
author Ben Wing <ben@xemacs.org>
date Fri, 22 Jan 2010 04:18:20 -0600
parents bbba13600d74
children 365bc8cb5894
line wrap: on
line source

/* DO NOT EDIT THIS FILE!!!! */

/* Most of this is required due to a bug in the GCC compiler driver
   which prevents us from passing this on the command line. It also
   reduces the compiler command line length, which can be a problem
   on some systems. */

#ifndef ELLCC_HDR
#define ELLCC_HDR

#define ELLCC_CC            "@XEMACS_CC@"
#define ELLCC_CFLAGS        "@XE_CFLAGS@"
#define ELLCC_CPPFLAGS      "@CPPFLAGS@"
#define ELLCC_LDFLAGS       "@LDFLAGS@"
#define ELLCC_CF_GENERAL    "@c_switch_general@"
#define ELLCC_CF_ALL        "@c_switch_all@"
#define ELLCC_LF_GENERAL    "@ld_switch_general@"
#define ELLCC_LF_ALL        "@ld_switch_all@"
#define ELLCC_LIBS_GENERAL  "@ld_libs_general@"
#define ELLCC_DLL_CFLAGS    "@dll_cflags@"
#define ELLCC_DLL_LDFLAGS   "@dll_ldflags@"
#define ELLCC_DLL_POST      "@dll_post@"
#define ELLCC_DLL_LD        "@dll_ld@"
#define ELLCC_DLL_LDO       "@dll_ldo@"
#define ELLCC_CONFIG        "@configuration@"
#define ELLCC_EMACS_VER     "@version@"
#define ELLCC_PROGNAME      "@PROGNAME@"
#define ELLCC_ARCHDIR       "@ARCHLIBDIR@"
#define ELLCC_MODDIR        "@MODULEDIR@"
#define ELLCC_SITEMODS      "@SITEMODULEDIR@"

#endif /* ELLCC_HDR */