lang.c 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /* Copyright (C) 1999, 2000, 2001, 2006, 2008 Free Software Foundation, Inc.
  2. *
  3. * This library is free software; you can redistribute it and/or
  4. * modify it under the terms of the GNU Lesser General Public License
  5. * as published by the Free Software Foundation; either version 3 of
  6. * the License, or (at your option) any later version.
  7. *
  8. * This library is distributed in the hope that it will be useful, but
  9. * WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. * Lesser General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU Lesser General Public
  14. * License along with this library; if not, write to the Free Software
  15. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  16. * 02110-1301 USA
  17. */
  18. #ifdef HAVE_CONFIG_H
  19. # include <config.h>
  20. #endif
  21. #include "libguile/_scm.h"
  22. #include "libguile/eval.h"
  23. #include "libguile/macros.h"
  24. #include "libguile/root.h"
  25. #include "libguile/validate.h"
  26. #include "libguile/lang.h"
  27. /* {Multi-language support}
  28. */
  29. #if SCM_ENABLE_ELISP
  30. void
  31. scm_init_lang ()
  32. {
  33. #include "libguile/lang.x"
  34. scm_c_define ("%nil", SCM_ELISP_NIL);
  35. }
  36. #endif /* SCM_ENABLE_ELISP */
  37. /*
  38. Local Variables:
  39. c-file-style: "gnu"
  40. End:
  41. */