2000-06-12 11:59:24 +00:00
|
|
|
|
/* Copyright (C) 1995,1996,1997,1998, 1999, 2000 Free Software Foundation, Inc.
|
1999-03-14 16:50:01 +00:00
|
|
|
|
*
|
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
|
|
* any later version.
|
|
|
|
|
|
*
|
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
|
*
|
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
|
* along with this software; see the file COPYING. If not, write to
|
|
|
|
|
|
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
|
|
|
|
|
* Boston, MA 02111-1307 USA
|
|
|
|
|
|
*
|
|
|
|
|
|
* As a special exception, the Free Software Foundation gives permission
|
|
|
|
|
|
* for additional uses of the text contained in its release of GUILE.
|
|
|
|
|
|
*
|
|
|
|
|
|
* The exception is that, if you link the GUILE library with other files
|
|
|
|
|
|
* to produce an executable, this does not by itself cause the
|
|
|
|
|
|
* resulting executable to be covered by the GNU General Public License.
|
|
|
|
|
|
* Your use of that executable is in no way restricted on account of
|
|
|
|
|
|
* linking the GUILE library code into it.
|
|
|
|
|
|
*
|
|
|
|
|
|
* This exception does not however invalidate any other reasons why
|
|
|
|
|
|
* the executable file might be covered by the GNU General Public License.
|
|
|
|
|
|
*
|
|
|
|
|
|
* This exception applies only to the code released by the
|
|
|
|
|
|
* Free Software Foundation under the name GUILE. If you copy
|
|
|
|
|
|
* code from other Free Software Foundation releases into a copy of
|
|
|
|
|
|
* GUILE, as the General Public License permits, the exception does
|
|
|
|
|
|
* not apply to the code that you add in this way. To avoid misleading
|
|
|
|
|
|
* anyone as to the status of such modified files, you must delete
|
|
|
|
|
|
* this exception notice from them.
|
|
|
|
|
|
*
|
|
|
|
|
|
* If you write modifications of your own for GUILE, it is your choice
|
|
|
|
|
|
* whether to permit this exception to apply to your modifications.
|
|
|
|
|
|
* If you do not wish that, delete this exception notice. */
|
1999-12-12 02:36:16 +00:00
|
|
|
|
|
|
|
|
|
|
/* Software engineering face-lift by Greg J. Badros, 11-Dec-1999,
|
|
|
|
|
|
gjb@cs.washington.edu, http://www.cs.washington.edu/homes/gjb */
|
|
|
|
|
|
|
1999-03-14 16:50:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2000-04-21 14:16:44 +00:00
|
|
|
|
#include "libguile/_scm.h"
|
|
|
|
|
|
#include "libguile/ports.h"
|
|
|
|
|
|
#include "libguile/root.h"
|
|
|
|
|
|
#include "libguile/smob.h"
|
|
|
|
|
|
#include "libguile/vectors.h"
|
|
|
|
|
|
|
|
|
|
|
|
#include "libguile/validate.h"
|
|
|
|
|
|
#include "libguile/keywords.h"
|
1999-03-14 16:50:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
2000-12-08 17:32:56 +00:00
|
|
|
|
scm_bits_t scm_tc16_keyword;
|
|
|
|
|
|
|
1999-03-14 16:50:01 +00:00
|
|
|
|
static int
|
2000-12-08 17:32:56 +00:00
|
|
|
|
keyword_print (SCM exp, SCM port, scm_print_state *pstate)
|
1999-03-14 16:50:01 +00:00
|
|
|
|
{
|
|
|
|
|
|
scm_puts ("#:", port);
|
2000-09-26 18:37:26 +00:00
|
|
|
|
scm_puts(1 + SCM_SYMBOL_CHARS (SCM_CDR (exp)), port);
|
1999-03-14 16:50:01 +00:00
|
|
|
|
return 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2000-05-15 11:47:48 +00:00
|
|
|
|
|
2000-01-05 19:05:23 +00:00
|
|
|
|
SCM_DEFINE (scm_make_keyword_from_dash_symbol, "make-keyword-from-dash-symbol", 1, 0, 0,
|
1999-12-12 02:36:16 +00:00
|
|
|
|
(SCM symbol),
|
2000-08-11 15:12:37 +00:00
|
|
|
|
"Make a keyword object from a @var{symbol} that starts with a dash.")
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#define FUNC_NAME s_scm_make_keyword_from_dash_symbol
|
1999-03-14 16:50:01 +00:00
|
|
|
|
{
|
|
|
|
|
|
SCM vcell;
|
|
|
|
|
|
|
2000-01-04 22:23:42 +00:00
|
|
|
|
SCM_ASSERT (SCM_SYMBOLP (symbol)
|
2000-09-22 17:17:55 +00:00
|
|
|
|
&& ('-' == SCM_SYMBOL_CHARS(symbol)[0]),
|
1999-12-12 02:36:16 +00:00
|
|
|
|
symbol, SCM_ARG1, FUNC_NAME);
|
1999-03-14 16:50:01 +00:00
|
|
|
|
|
|
|
|
|
|
SCM_DEFER_INTS;
|
|
|
|
|
|
vcell = scm_sym2ovcell_soft (symbol, scm_keyword_obarray);
|
2000-04-03 08:47:51 +00:00
|
|
|
|
if (SCM_FALSEP (vcell))
|
1999-03-14 16:50:01 +00:00
|
|
|
|
{
|
|
|
|
|
|
SCM keyword;
|
2000-04-03 08:47:51 +00:00
|
|
|
|
SCM_NEWSMOB (keyword, scm_tc16_keyword, SCM_UNPACK (symbol));
|
1999-03-14 16:50:01 +00:00
|
|
|
|
scm_intern_symbol (scm_keyword_obarray, symbol);
|
|
|
|
|
|
vcell = scm_sym2ovcell_soft (symbol, scm_keyword_obarray);
|
|
|
|
|
|
SCM_SETCDR (vcell, keyword);
|
|
|
|
|
|
}
|
|
|
|
|
|
SCM_ALLOW_INTS;
|
|
|
|
|
|
return SCM_CDR (vcell);
|
|
|
|
|
|
}
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#undef FUNC_NAME
|
1999-03-14 16:50:01 +00:00
|
|
|
|
|
1999-06-23 11:16:09 +00:00
|
|
|
|
SCM
|
|
|
|
|
|
scm_c_make_keyword (char *s)
|
|
|
|
|
|
{
|
|
|
|
|
|
char *buf = scm_must_malloc (strlen (s) + 2, "keyword");
|
2000-12-11 14:48:23 +00:00
|
|
|
|
SCM symbol;
|
|
|
|
|
|
|
1999-06-23 11:16:09 +00:00
|
|
|
|
buf[0] = '-';
|
|
|
|
|
|
strcpy (buf + 1, s);
|
2000-12-11 14:48:23 +00:00
|
|
|
|
symbol = scm_str2symbol (buf);
|
1999-06-23 11:16:09 +00:00
|
|
|
|
scm_must_free (buf);
|
2000-12-11 14:48:23 +00:00
|
|
|
|
scm_done_free (strlen (s) + 2);
|
|
|
|
|
|
|
|
|
|
|
|
return scm_make_keyword_from_dash_symbol (symbol);
|
1999-06-23 11:16:09 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2000-01-05 19:25:37 +00:00
|
|
|
|
SCM_DEFINE (scm_keyword_p, "keyword?", 1, 0, 0,
|
2000-01-26 01:17:16 +00:00
|
|
|
|
(SCM obj),
|
2000-08-11 15:12:37 +00:00
|
|
|
|
"Returns @code{#t} if the argument @var{obj} is a keyword, else @code{#f}.")
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#define FUNC_NAME s_scm_keyword_p
|
1999-03-14 16:50:01 +00:00
|
|
|
|
{
|
1999-12-16 20:48:05 +00:00
|
|
|
|
return SCM_BOOL(SCM_KEYWORDP (obj));
|
1999-03-14 16:50:01 +00:00
|
|
|
|
}
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#undef FUNC_NAME
|
1999-03-14 16:50:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
2000-01-05 19:25:37 +00:00
|
|
|
|
SCM_DEFINE (scm_keyword_dash_symbol, "keyword-dash-symbol", 1, 0, 0,
|
2000-01-26 01:17:16 +00:00
|
|
|
|
(SCM keyword),
|
2000-08-11 15:12:37 +00:00
|
|
|
|
"Return the dash symbol for @var{keyword}.\n"
|
|
|
|
|
|
"This is the inverse of @code{make-keyword-from-dash-symbol}.")
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#define FUNC_NAME s_scm_keyword_dash_symbol
|
1999-03-14 16:50:01 +00:00
|
|
|
|
{
|
2000-01-05 19:25:37 +00:00
|
|
|
|
SCM_VALIDATE_KEYWORD (1,keyword);
|
1999-03-14 16:50:01 +00:00
|
|
|
|
return SCM_CDR (keyword);
|
|
|
|
|
|
}
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#undef FUNC_NAME
|
1999-03-14 16:50:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
|
scm_init_keywords ()
|
|
|
|
|
|
{
|
2000-12-08 17:32:56 +00:00
|
|
|
|
scm_tc16_keyword = scm_make_smob_type ("keyword", 0);
|
|
|
|
|
|
scm_set_smob_mark (scm_tc16_keyword, scm_markcdr);
|
|
|
|
|
|
scm_set_smob_print (scm_tc16_keyword, keyword_print);
|
2000-05-15 11:47:48 +00:00
|
|
|
|
|
1999-03-14 16:50:01 +00:00
|
|
|
|
scm_keyword_obarray = scm_make_vector (SCM_MAKINUM (256), SCM_EOL);
|
* alist.c, arbiters.c, async.c, backtrace.c, boolean.c, chars.c,
continuations.c, debug-malloc.c, debug.c, dynl.c, dynwind.c,
environments.c, eq.c, error.c, eval.c, evalext.c, feature.c,
filesys.c, fluids.c, fports.c, gc.c, goops.c, guardians.c, hash.c,
hashtab.c, hooks.c, ioext.c, iselect.c, keywords.c, lang.c,
list.c, load.c, macros.c, modules.c, net_db.c, numbers.c,
objects.c, objprop.c, options.c, pairs.c, ports.c, posix.c,
print.c, procprop.c, procs.c, properties.c, ramap.c, random.c,
read.c, regex-posix.c, root.c, scmsigs.c, script.c, simpos.c,
socket.c, sort.c, srcprop.c, stackchk.c, stacks.c, stime.c,
strings.c, strop.c, strorder.c, strports.c, struct.c, symbols.c,
tag.c, threads.c, throw.c, unif.c, variable.c, vectors.c,
version.c, vports.c, weaks.c: Makes sure the snarfer output
inclusion is disabled when the snarfer is run on the file. Thanks
to Lars J. Aas!
* Makefile.am: Install guile-procedures.txt in version-specific
directory to enable multiple installed guile versions. Suggested
by Karl M. Hegbloom <karlheg@debian.org, patch by Matthias Koeppe.
2000-11-17 16:25:05 +00:00
|
|
|
|
#ifndef SCM_MAGIC_SNARFER
|
2000-04-21 14:16:44 +00:00
|
|
|
|
#include "libguile/keywords.x"
|
* alist.c, arbiters.c, async.c, backtrace.c, boolean.c, chars.c,
continuations.c, debug-malloc.c, debug.c, dynl.c, dynwind.c,
environments.c, eq.c, error.c, eval.c, evalext.c, feature.c,
filesys.c, fluids.c, fports.c, gc.c, goops.c, guardians.c, hash.c,
hashtab.c, hooks.c, ioext.c, iselect.c, keywords.c, lang.c,
list.c, load.c, macros.c, modules.c, net_db.c, numbers.c,
objects.c, objprop.c, options.c, pairs.c, ports.c, posix.c,
print.c, procprop.c, procs.c, properties.c, ramap.c, random.c,
read.c, regex-posix.c, root.c, scmsigs.c, script.c, simpos.c,
socket.c, sort.c, srcprop.c, stackchk.c, stacks.c, stime.c,
strings.c, strop.c, strorder.c, strports.c, struct.c, symbols.c,
tag.c, threads.c, throw.c, unif.c, variable.c, vectors.c,
version.c, vports.c, weaks.c: Makes sure the snarfer output
inclusion is disabled when the snarfer is run on the file. Thanks
to Lars J. Aas!
* Makefile.am: Install guile-procedures.txt in version-specific
directory to enable multiple installed guile versions. Suggested
by Karl M. Hegbloom <karlheg@debian.org, patch by Matthias Koeppe.
2000-11-17 16:25:05 +00:00
|
|
|
|
#endif
|
1999-03-14 16:50:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2000-03-19 19:01:16 +00:00
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
Local Variables:
|
|
|
|
|
|
c-file-style: "gnu"
|
|
|
|
|
|
End:
|
|
|
|
|
|
*/
|