2001-03-30 15:03:23 +00:00
|
|
|
|
/* Copyright (C) 1995,1996,1997,1998,1999,2000,2001 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
|
|
|
|
|
|
|
|
|
|
|
2001-01-26 17:30:54 +00:00
|
|
|
|
#include <string.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"
|
2001-02-02 04:56:25 +00:00
|
|
|
|
#include "libguile/hashtab.h"
|
2000-04-21 14:16:44 +00:00
|
|
|
|
|
|
|
|
|
|
#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
|
2001-06-07 21:12:19 +00:00
|
|
|
|
keyword_print (SCM exp, SCM port, scm_print_state *pstate SCM_UNUSED)
|
1999-03-14 16:50:01 +00:00
|
|
|
|
{
|
2001-06-08 10:02:33 +00:00
|
|
|
|
SCM symbol = SCM_KEYWORDSYM (exp);
|
|
|
|
|
|
|
1999-03-14 16:50:01 +00:00
|
|
|
|
scm_puts ("#:", port);
|
2001-06-08 10:02:33 +00:00
|
|
|
|
scm_print_symbol_name (SCM_SYMBOL_CHARS (symbol) + 1,
|
|
|
|
|
|
SCM_SYMBOL_LENGTH (symbol) - 1,
|
2001-05-30 23:48:13 +00:00
|
|
|
|
port);
|
2001-06-08 10:02:33 +00:00
|
|
|
|
scm_remember_upto_here_1 (symbol);
|
1999-03-14 16:50:01 +00:00
|
|
|
|
return 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
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
|
|
|
|
{
|
2001-05-15 14:57:22 +00:00
|
|
|
|
SCM keyword;
|
1999-03-14 16:50:01 +00:00
|
|
|
|
|
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;
|
2001-05-15 14:57:22 +00:00
|
|
|
|
keyword = scm_hashq_ref (scm_keyword_obarray, symbol, SCM_BOOL_F);
|
|
|
|
|
|
if (SCM_FALSEP (keyword))
|
1999-03-14 16:50:01 +00:00
|
|
|
|
{
|
2000-04-03 08:47:51 +00:00
|
|
|
|
SCM_NEWSMOB (keyword, scm_tc16_keyword, SCM_UNPACK (symbol));
|
2001-05-15 14:57:22 +00:00
|
|
|
|
scm_hashq_set_x (scm_keyword_obarray, symbol, keyword);
|
1999-03-14 16:50:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
SCM_ALLOW_INTS;
|
2001-05-15 14:57:22 +00:00
|
|
|
|
return keyword;
|
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
|
|
|
|
|
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),
|
2001-04-03 13:19:05 +00:00
|
|
|
|
"Return @code{#t} if the argument @var{obj} is a keyword, else\n"
|
|
|
|
|
|
"@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
|
|
|
|
{
|
2001-03-30 15:03:23 +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
|
|
|
|
{
|
2001-03-30 15:03:23 +00:00
|
|
|
|
SCM_VALIDATE_KEYWORD (1, keyword);
|
|
|
|
|
|
return SCM_KEYWORDSYM (keyword);
|
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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2001-02-02 04:56:25 +00:00
|
|
|
|
scm_keyword_obarray = scm_c_make_hash_table (256);
|
* 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:
|
|
|
|
|
|
*/
|