The FSF has a new address.
[bpt/guile.git] / libguile / deprecated.c
CommitLineData
19e2247d
MV
1/* This file contains definitions for deprecated features. When you
2 deprecate something, move it here when that is feasible.
3*/
4
3101f40f 5/* Copyright (C) 2003, 2004 Free Software Foundation, Inc.
19e2247d 6 *
73be1d9e
MV
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
19e2247d 11 *
73be1d9e 12 * This library is distributed in the hope that it will be useful,
19e2247d 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
73be1d9e
MV
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
19e2247d 16 *
73be1d9e
MV
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
92205699 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
73be1d9e 20 */
19e2247d
MV
21
22#include "libguile/_scm.h"
4e047c3e 23#include "libguile/async.h"
19e2247d 24#include "libguile/deprecated.h"
db74ed03 25#include "libguile/discouraged.h"
55d30fac 26#include "libguile/deprecation.h"
19e2247d
MV
27#include "libguile/snarf.h"
28#include "libguile/validate.h"
29#include "libguile/strings.h"
c44ca4fe 30#include "libguile/srfi-13.h"
a0454d72
MV
31#include "libguile/modules.h"
32#include "libguile/eval.h"
33#include "libguile/smob.h"
34#include "libguile/procprop.h"
35#include "libguile/vectors.h"
36#include "libguile/hashtab.h"
37#include "libguile/struct.h"
38#include "libguile/variable.h"
39#include "libguile/fluids.h"
40#include "libguile/ports.h"
965445d4
MV
41#include "libguile/eq.h"
42#include "libguile/read.h"
4abecea8
MV
43#include "libguile/strports.h"
44#include "libguile/smob.h"
cc5c1b66 45#include "libguile/alist.h"
db74ed03 46#include "libguile/keywords.h"
9de87eea 47#include "libguile/feature.h"
19e2247d 48
55d30fac
MV
49#include <stdio.h>
50#include <string.h>
51
19e2247d
MV
52#if (SCM_ENABLE_DEPRECATED == 1)
53
7e6e6b37
DH
54/* From print.c: Internal symbol names of isyms. Deprecated in guile 1.7.0 on
55 * 2004-04-22. */
56char *scm_isymnames[] =
57{
58 "#@<deprecated>"
59};
60
61
e90c3a89
DH
62/* From eval.c: Error messages of the evaluator. These were deprecated in
63 * guile 1.7.0 on 2003-06-02. */
64const char scm_s_expression[] = "missing or extra expression";
65const char scm_s_test[] = "bad test";
66const char scm_s_body[] = "bad body";
67const char scm_s_bindings[] = "bad bindings";
68const char scm_s_variable[] = "bad variable";
69const char scm_s_clauses[] = "bad or missing clauses";
70const char scm_s_formals[] = "bad formals";
71
72
19e2247d
MV
73SCM_REGISTER_PROC(s_substring_move_left_x, "substring-move-left!", 5, 0, 0, scm_substring_move_x);
74
75SCM_REGISTER_PROC(s_substring_move_right_x, "substring-move-right!", 5, 0, 0, scm_substring_move_x);
76
55d30fac
MV
77SCM
78scm_wta (SCM arg, const char *pos, const char *s_subr)
79{
80 if (!s_subr || !*s_subr)
81 s_subr = NULL;
82 if ((~0x1fL) & (long) pos)
83 {
84 /* error string supplied. */
85 scm_misc_error (s_subr, pos, scm_list_1 (arg));
86 }
87 else
88 {
89 /* numerical error code. */
90 scm_t_bits error = (scm_t_bits) pos;
91
92 switch (error)
93 {
94 case SCM_ARGn:
95 scm_wrong_type_arg (s_subr, 0, arg);
96 case SCM_ARG1:
97 scm_wrong_type_arg (s_subr, 1, arg);
98 case SCM_ARG2:
99 scm_wrong_type_arg (s_subr, 2, arg);
100 case SCM_ARG3:
101 scm_wrong_type_arg (s_subr, 3, arg);
102 case SCM_ARG4:
103 scm_wrong_type_arg (s_subr, 4, arg);
104 case SCM_ARG5:
105 scm_wrong_type_arg (s_subr, 5, arg);
106 case SCM_ARG6:
107 scm_wrong_type_arg (s_subr, 6, arg);
108 case SCM_ARG7:
109 scm_wrong_type_arg (s_subr, 7, arg);
110 case SCM_WNA:
111 scm_wrong_num_args (arg);
112 case SCM_OUTOFRANGE:
113 scm_out_of_range (s_subr, arg);
114 case SCM_NALLOC:
115 scm_memory_error (s_subr);
116 default:
117 /* this shouldn't happen. */
118 scm_misc_error (s_subr, "Unknown error", SCM_EOL);
119 }
120 }
121 return SCM_UNSPECIFIED;
122}
123
124/* Module registry
125 */
126
127/* We can't use SCM objects here. One should be able to call
128 SCM_REGISTER_MODULE from a C++ constructor for a static
129 object. This happens before main and thus before libguile is
130 initialized. */
131
132struct moddata {
133 struct moddata *link;
134 char *module_name;
135 void *init_func;
136};
137
138static struct moddata *registered_mods = NULL;
139
140void
141scm_register_module_xxx (char *module_name, void *init_func)
142{
143 struct moddata *md;
144
145 scm_c_issue_deprecation_warning
146 ("`scm_register_module_xxx' is deprecated. Use extensions instead.");
147
148 /* XXX - should we (and can we) DEFER_INTS here? */
149
150 for (md = registered_mods; md; md = md->link)
151 if (!strcmp (md->module_name, module_name))
152 {
153 md->init_func = init_func;
154 return;
155 }
156
157 md = (struct moddata *) malloc (sizeof (struct moddata));
158 if (md == NULL)
159 {
160 fprintf (stderr,
161 "guile: can't register module (%s): not enough memory",
162 module_name);
163 return;
164 }
165
166 md->module_name = module_name;
167 md->init_func = init_func;
168 md->link = registered_mods;
169 registered_mods = md;
170}
171
172SCM_DEFINE (scm_registered_modules, "c-registered-modules", 0, 0, 0,
173 (),
174 "Return a list of the object code modules that have been imported into\n"
175 "the current Guile process. Each element of the list is a pair whose\n"
176 "car is the name of the module, and whose cdr is the function handle\n"
177 "for that module's initializer function. The name is the string that\n"
178 "has been passed to scm_register_module_xxx.")
179#define FUNC_NAME s_scm_registered_modules
180{
181 SCM res;
182 struct moddata *md;
183
184 res = SCM_EOL;
185 for (md = registered_mods; md; md = md->link)
3ee86942 186 res = scm_cons (scm_cons (scm_from_locale_string (md->module_name),
c71b0706 187 scm_from_ulong ((unsigned long) md->init_func)),
55d30fac
MV
188 res);
189 return res;
190}
191#undef FUNC_NAME
192
193SCM_DEFINE (scm_clear_registered_modules, "c-clear-registered-modules", 0, 0, 0,
194 (),
195 "Destroy the list of modules registered with the current Guile process.\n"
196 "The return value is unspecified. @strong{Warning:} this function does\n"
197 "not actually unlink or deallocate these modules, but only destroys the\n"
198 "records of which modules have been loaded. It should therefore be used\n"
199 "only by module bookkeeping operations.")
200#define FUNC_NAME s_scm_clear_registered_modules
201{
202 struct moddata *md1, *md2;
203
9de87eea 204 SCM_CRITICAL_SECTION_START;
55d30fac
MV
205
206 for (md1 = registered_mods; md1; md1 = md2)
207 {
208 md2 = md1->link;
209 free (md1);
210 }
211 registered_mods = NULL;
212
9de87eea 213 SCM_CRITICAL_SECTION_END;
55d30fac
MV
214 return SCM_UNSPECIFIED;
215}
216#undef FUNC_NAME
217
a0454d72
MV
218void
219scm_remember (SCM *ptr)
220{
221 scm_c_issue_deprecation_warning ("`scm_remember' is deprecated. "
222 "Use the `scm_remember_upto_here*' family of functions instead.");
223}
224
225SCM
226scm_protect_object (SCM obj)
227{
228 scm_c_issue_deprecation_warning ("`scm_protect_object' is deprecated. "
229 "Use `scm_gc_protect_object' instead.");
230 return scm_gc_protect_object (obj);
231}
232
233SCM
234scm_unprotect_object (SCM obj)
235{
236 scm_c_issue_deprecation_warning ("`scm_unprotect_object' is deprecated. "
237 "Use `scm_gc_unprotect_object' instead.");
238 return scm_gc_unprotect_object (obj);
239}
240
241SCM_SYMBOL (scm_sym_app, "app");
242SCM_SYMBOL (scm_sym_modules, "modules");
243static SCM module_prefix = SCM_BOOL_F;
244static SCM make_modules_in_var;
245static SCM beautify_user_module_x_var;
246static SCM try_module_autoload_var;
247
248static void
249init_module_stuff ()
250{
251#define PERM(x) scm_permanent_object(x)
252
253 if (module_prefix == SCM_BOOL_F)
254 {
255 module_prefix = PERM (scm_list_2 (scm_sym_app, scm_sym_modules));
256 make_modules_in_var = PERM (scm_c_lookup ("make-modules-in"));
257 beautify_user_module_x_var =
258 PERM (scm_c_lookup ("beautify-user-module!"));
259 try_module_autoload_var = PERM (scm_c_lookup ("try-module-autoload"));
260 }
261}
262
263SCM
264scm_the_root_module ()
265{
266 init_module_stuff ();
267 scm_c_issue_deprecation_warning ("`scm_the_root_module' is deprecated. "
268 "Use `scm_c_resolve_module (\"guile\")' "
269 "instead.");
270
271 return scm_c_resolve_module ("guile");
272}
273
274static SCM
275scm_module_full_name (SCM name)
276{
277 init_module_stuff ();
bc36d050 278 if (scm_is_eq (SCM_CAR (name), scm_sym_app))
a0454d72
MV
279 return name;
280 else
281 return scm_append (scm_list_2 (module_prefix, name));
282}
283
284SCM
285scm_make_module (SCM name)
286{
287 init_module_stuff ();
288 scm_c_issue_deprecation_warning ("`scm_make_module' is deprecated. "
289 "Use `scm_c_define_module instead.");
290
291 return scm_call_2 (SCM_VARIABLE_REF (make_modules_in_var),
292 scm_the_root_module (),
293 scm_module_full_name (name));
294}
295
296SCM
297scm_ensure_user_module (SCM module)
298{
299 init_module_stuff ();
300 scm_c_issue_deprecation_warning ("`scm_ensure_user_module' is deprecated. "
301 "Use `scm_c_define_module instead.");
302
303 scm_call_1 (SCM_VARIABLE_REF (beautify_user_module_x_var), module);
304 return SCM_UNSPECIFIED;
305}
306
307SCM
308scm_load_scheme_module (SCM name)
309{
310 init_module_stuff ();
311 scm_c_issue_deprecation_warning ("`scm_load_scheme_module' is deprecated. "
312 "Use `scm_c_resolve_module instead.");
313
314 return scm_call_1 (SCM_VARIABLE_REF (try_module_autoload_var), name);
315}
316
317/* This is implemented in C solely for SCM_COERCE_OUTPORT ... */
318
319static void
320maybe_close_port (void *data, SCM port)
321{
322 SCM except = (SCM)data;
323
d2e53ed6 324 while (!scm_is_null (except))
a0454d72
MV
325 {
326 SCM p = SCM_COERCE_OUTPORT (SCM_CAR (except));
bc36d050 327 if (scm_is_eq (p, port))
a0454d72
MV
328 return;
329 except = SCM_CDR (except);
330 }
331
332 scm_close_port (port);
333}
334
335SCM_DEFINE (scm_close_all_ports_except, "close-all-ports-except", 0, 0, 1,
336 (SCM ports),
337 "[DEPRECATED] Close all open file ports used by the interpreter\n"
338 "except for those supplied as arguments. This procedure\n"
339 "was intended to be used before an exec call to close file descriptors\n"
340 "which are not needed in the new process. However it has the\n"
341 "undesirable side effect of flushing buffers, so it's deprecated.\n"
342 "Use port-for-each instead.")
343#define FUNC_NAME s_scm_close_all_ports_except
344{
345 SCM p;
346 SCM_VALIDATE_REST_ARGUMENT (ports);
347
d2e53ed6 348 for (p = ports; !scm_is_null (p); p = SCM_CDR (p))
a0454d72
MV
349 SCM_VALIDATE_OPPORT (SCM_ARG1, SCM_COERCE_OUTPORT (SCM_CAR (p)));
350
351 scm_c_port_for_each (maybe_close_port, ports);
352
353 return SCM_UNSPECIFIED;
354}
355#undef FUNC_NAME
55d30fac 356
965445d4
MV
357SCM_DEFINE (scm_variable_set_name_hint, "variable-set-name-hint!", 2, 0, 0,
358 (SCM var, SCM hint),
359 "Do not use this function.")
360#define FUNC_NAME s_scm_variable_set_name_hint
361{
362 SCM_VALIDATE_VARIABLE (1, var);
363 SCM_VALIDATE_SYMBOL (2, hint);
364 scm_c_issue_deprecation_warning
365 ("'variable-set-name-hint!' is deprecated. Do not use it.");
366 return SCM_UNSPECIFIED;
367}
368#undef FUNC_NAME
369
370SCM_DEFINE (scm_builtin_variable, "builtin-variable", 1, 0, 0,
371 (SCM name),
372 "Do not use this function.")
373#define FUNC_NAME s_scm_builtin_variable
374{
375 SCM_VALIDATE_SYMBOL (1,name);
376 scm_c_issue_deprecation_warning ("`builtin-variable' is deprecated. "
377 "Use module system operations instead.");
378 return scm_sym2var (name, SCM_BOOL_F, SCM_BOOL_T);
379}
380#undef FUNC_NAME
381
382SCM
383scm_makstr (size_t len, int dummy)
384{
385 scm_c_issue_deprecation_warning
3ee86942
MV
386 ("'scm_makstr' is deprecated. Use 'scm_c_make_string' instead.");
387 return scm_c_make_string (len, SCM_UNDEFINED);
965445d4
MV
388}
389
390SCM
391scm_makfromstr (const char *src, size_t len, int dummy SCM_UNUSED)
392{
393 scm_c_issue_deprecation_warning ("`scm_makfromstr' is deprecated. "
3ee86942 394 "Use `scm_from_locale_stringn' instead.");
965445d4 395
3ee86942 396 return scm_from_locale_stringn (src, len);
965445d4
MV
397}
398
399SCM
400scm_internal_with_fluids (SCM fluids, SCM values, SCM (*cproc) (), void *cdata)
401{
402 scm_c_issue_deprecation_warning ("`scm_internal_with_fluids' is deprecated. "
403 "Use `scm_c_with_fluids' instead.");
404
405 return scm_c_with_fluids (fluids, values, cproc, cdata);
406}
407
408SCM
409scm_make_gsubr (const char *name, int req, int opt, int rst, SCM (*fcn)())
410{
411 scm_c_issue_deprecation_warning
412 ("`scm_make_gsubr' is deprecated. Use `scm_c_define_gsubr' instead.");
413
414 return scm_c_define_gsubr (name, req, opt, rst, fcn);
415}
416
417SCM
418scm_make_gsubr_with_generic (const char *name,
419 int req, int opt, int rst,
420 SCM (*fcn)(), SCM *gf)
421{
422 scm_c_issue_deprecation_warning
423 ("`scm_make_gsubr_with_generic' is deprecated. "
424 "Use `scm_c_define_gsubr_with_generic' instead.");
425
426 return scm_c_define_gsubr_with_generic (name, req, opt, rst, fcn, gf);
427}
428
429SCM
430scm_create_hook (const char *name, int n_args)
431{
432 scm_c_issue_deprecation_warning
433 ("'scm_create_hook' is deprecated. "
434 "Use 'scm_make_hook' and 'scm_c_define' instead.");
435 {
7888309b 436 SCM hook = scm_make_hook (scm_from_int (n_args));
965445d4
MV
437 scm_c_define (name, hook);
438 return scm_permanent_object (hook);
439 }
440}
441
442SCM_DEFINE (scm_sloppy_memq, "sloppy-memq", 2, 0, 0,
443 (SCM x, SCM lst),
444 "This procedure behaves like @code{memq}, but does no type or error checking.\n"
445 "Its use is recommended only in writing Guile internals,\n"
446 "not for high-level Scheme programs.")
447#define FUNC_NAME s_scm_sloppy_memq
448{
449 scm_c_issue_deprecation_warning
450 ("'sloppy-memq' is deprecated. Use 'memq' instead.");
451
d2e53ed6 452 for(; scm_is_pair (lst); lst = SCM_CDR(lst))
965445d4 453 {
bc36d050 454 if (scm_is_eq (SCM_CAR (lst), x))
965445d4
MV
455 return lst;
456 }
457 return lst;
458}
459#undef FUNC_NAME
460
461
462SCM_DEFINE (scm_sloppy_memv, "sloppy-memv", 2, 0, 0,
463 (SCM x, SCM lst),
464 "This procedure behaves like @code{memv}, but does no type or error checking.\n"
465 "Its use is recommended only in writing Guile internals,\n"
466 "not for high-level Scheme programs.")
467#define FUNC_NAME s_scm_sloppy_memv
468{
469 scm_c_issue_deprecation_warning
470 ("'sloppy-memv' is deprecated. Use 'memv' instead.");
471
d2e53ed6 472 for(; scm_is_pair (lst); lst = SCM_CDR(lst))
965445d4 473 {
7888309b 474 if (! scm_is_false (scm_eqv_p (SCM_CAR (lst), x)))
965445d4
MV
475 return lst;
476 }
477 return lst;
478}
479#undef FUNC_NAME
480
481
482SCM_DEFINE (scm_sloppy_member, "sloppy-member", 2, 0, 0,
483 (SCM x, SCM lst),
484 "This procedure behaves like @code{member}, but does no type or error checking.\n"
485 "Its use is recommended only in writing Guile internals,\n"
486 "not for high-level Scheme programs.")
487#define FUNC_NAME s_scm_sloppy_member
488{
489 scm_c_issue_deprecation_warning
490 ("'sloppy-member' is deprecated. Use 'member' instead.");
491
d2e53ed6 492 for(; scm_is_pair (lst); lst = SCM_CDR(lst))
965445d4 493 {
7888309b 494 if (! scm_is_false (scm_equal_p (SCM_CAR (lst), x)))
965445d4
MV
495 return lst;
496 }
497 return lst;
498}
499#undef FUNC_NAME
500
501SCM_SYMBOL (scm_end_of_file_key, "end-of-file");
502
503SCM_DEFINE (scm_read_and_eval_x, "read-and-eval!", 0, 1, 0,
504 (SCM port),
505 "Read a form from @var{port} (standard input by default), and evaluate it\n"
506 "(memoizing it in the process) in the top-level environment. If no data\n"
507 "is left to be read from @var{port}, an @code{end-of-file} error is\n"
508 "signalled.")
509#define FUNC_NAME s_scm_read_and_eval_x
510{
f8ba2197
DH
511 SCM form;
512
965445d4
MV
513 scm_c_issue_deprecation_warning
514 ("'read-and-eval!' is deprecated. Use 'read' and 'eval' instead.");
515
f8ba2197 516 form = scm_read (port);
965445d4
MV
517 if (SCM_EOF_OBJECT_P (form))
518 scm_ithrow (scm_end_of_file_key, SCM_EOL, 1);
519 return scm_eval_x (form, scm_current_module ());
520}
521#undef FUNC_NAME
522
4abecea8
MV
523SCM
524scm_make_subr_opt (const char *name, int type, SCM (*fcn) (), int set)
525{
526 scm_c_issue_deprecation_warning
527 ("`scm_make_subr_opt' is deprecated. Use `scm_c_make_subr' or "
528 "`scm_c_define_subr' instead.");
529
530 if (set)
531 return scm_c_define_subr (name, type, fcn);
532 else
533 return scm_c_make_subr (name, type, fcn);
534}
535
536SCM
537scm_make_subr (const char *name, int type, SCM (*fcn) ())
538{
539 scm_c_issue_deprecation_warning
540 ("`scm_make_subr' is deprecated. Use `scm_c_define_subr' instead.");
541
542 return scm_c_define_subr (name, type, fcn);
543}
544
545SCM
546scm_make_subr_with_generic (const char *name, int type, SCM (*fcn) (), SCM *gf)
547{
548 scm_c_issue_deprecation_warning
549 ("`scm_make_subr_with_generic' is deprecated. Use "
550 "`scm_c_define_subr_with_generic' instead.");
551
552 return scm_c_define_subr_with_generic (name, type, fcn, gf);
553}
554
555/* Call thunk(closure) underneath a top-level error handler.
556 * If an error occurs, pass the exitval through err_filter and return it.
557 * If no error occurs, return the value of thunk.
558 */
559
560#ifdef _UNICOS
561typedef int setjmp_type;
562#else
563typedef long setjmp_type;
564#endif
565
566struct cce_handler_data {
567 SCM (*err_filter) ();
568 void *closure;
569};
570
571static SCM
572invoke_err_filter (void *d, SCM tag, SCM args)
573{
574 struct cce_handler_data *data = (struct cce_handler_data *)d;
575 return data->err_filter (SCM_BOOL_F, data->closure);
576}
577
578SCM
579scm_call_catching_errors (SCM (*thunk)(), SCM (*err_filter)(), void *closure)
580{
581 scm_c_issue_deprecation_warning
582 ("'scm_call_catching_errors' is deprecated. "
583 "Use 'scm_internal_catch' instead.");
584
585 {
586 struct cce_handler_data data;
587 data.err_filter = err_filter;
588 data.closure = closure;
589 return scm_internal_catch (SCM_BOOL_T,
590 (scm_t_catch_body)thunk, closure,
591 (scm_t_catch_handler)invoke_err_filter, &data);
592 }
593}
594
595long
596scm_make_smob_type_mfpe (char *name, size_t size,
597 SCM (*mark) (SCM),
598 size_t (*free) (SCM),
599 int (*print) (SCM, SCM, scm_print_state *),
600 SCM (*equalp) (SCM, SCM))
601{
602 scm_c_issue_deprecation_warning
603 ("'scm_make_smob_type_mfpe' is deprecated. "
604 "Use 'scm_make_smob_type' plus 'scm_set_smob_*' instead.");
605
606 {
607 long answer = scm_make_smob_type (name, size);
608 scm_set_smob_mfpe (answer, mark, free, print, equalp);
609 return answer;
610 }
611}
612
613void
614scm_set_smob_mfpe (long tc,
615 SCM (*mark) (SCM),
616 size_t (*free) (SCM),
617 int (*print) (SCM, SCM, scm_print_state *),
618 SCM (*equalp) (SCM, SCM))
619{
620 scm_c_issue_deprecation_warning
621 ("'scm_set_smob_mfpe' is deprecated. "
622 "Use 'scm_set_smob_mark' instead, for example.");
623
624 if (mark) scm_set_smob_mark (tc, mark);
625 if (free) scm_set_smob_free (tc, free);
626 if (print) scm_set_smob_print (tc, print);
627 if (equalp) scm_set_smob_equalp (tc, equalp);
628}
629
630SCM
631scm_read_0str (char *expr)
632{
633 scm_c_issue_deprecation_warning
634 ("scm_read_0str is deprecated. Use scm_c_read_string instead.");
635
636 return scm_c_read_string (expr);
637}
638
639SCM
640scm_eval_0str (const char *expr)
641{
642 scm_c_issue_deprecation_warning
643 ("scm_eval_0str is deprecated. Use scm_c_eval_string instead.");
644
645 return scm_c_eval_string (expr);
646}
647
648SCM
649scm_strprint_obj (SCM obj)
650{
651 scm_c_issue_deprecation_warning
652 ("scm_strprint_obj is deprecated. Use scm_object_to_string instead.");
653 return scm_object_to_string (obj, SCM_UNDEFINED);
654}
655
a725fa95
MV
656char *
657scm_i_object_chars (SCM obj)
658{
659 scm_c_issue_deprecation_warning
660 ("SCM_CHARS is deprecated. See the manual for alternatives.");
661 if (SCM_STRINGP (obj))
662 return SCM_STRING_CHARS (obj);
663 if (SCM_SYMBOLP (obj))
664 return SCM_SYMBOL_CHARS (obj);
665 abort ();
666}
667
668long
669scm_i_object_length (SCM obj)
670{
671 scm_c_issue_deprecation_warning
672 ("SCM_LENGTH is deprecated. "
673 "Use scm_c_string_length instead, for example, or see the manual.");
674 if (SCM_STRINGP (obj))
675 return SCM_STRING_LENGTH (obj);
676 if (SCM_SYMBOLP (obj))
677 return SCM_SYMBOL_LENGTH (obj);
678 if (SCM_VECTORP (obj))
679 return SCM_VECTOR_LENGTH (obj);
680 abort ();
681}
682
cc5c1b66
MV
683SCM
684scm_sym2ovcell_soft (SCM sym, SCM obarray)
685{
686 SCM lsym, z;
3ee86942 687 size_t hash = scm_i_symbol_hash (sym) % SCM_VECTOR_LENGTH (obarray);
cc5c1b66
MV
688
689 scm_c_issue_deprecation_warning ("`scm_sym2ovcell_soft' is deprecated. "
690 "Use hashtables instead.");
691
9de87eea 692 SCM_CRITICAL_SECTION_START;
cc5c1b66
MV
693 for (lsym = SCM_VECTOR_REF (obarray, hash);
694 SCM_NIMP (lsym);
695 lsym = SCM_CDR (lsym))
696 {
697 z = SCM_CAR (lsym);
bc36d050 698 if (scm_is_eq (SCM_CAR (z), sym))
cc5c1b66 699 {
9de87eea 700 SCM_CRITICAL_SECTION_END;
cc5c1b66
MV
701 return z;
702 }
703 }
9de87eea 704 SCM_CRITICAL_SECTION_END;
cc5c1b66
MV
705 return SCM_BOOL_F;
706}
707
708
709SCM
710scm_sym2ovcell (SCM sym, SCM obarray)
711#define FUNC_NAME "scm_sym2ovcell"
712{
713 SCM answer;
714
715 scm_c_issue_deprecation_warning ("`scm_sym2ovcell' is deprecated. "
716 "Use hashtables instead.");
717
718 answer = scm_sym2ovcell_soft (sym, obarray);
7888309b 719 if (scm_is_true (answer))
cc5c1b66
MV
720 return answer;
721 SCM_MISC_ERROR ("uninterned symbol: ~S", scm_list_1 (sym));
722 return SCM_UNSPECIFIED; /* not reached */
723}
724#undef FUNC_NAME
725
726
727/* Intern a symbol whose name is the LEN characters at NAME in OBARRAY.
728
729 OBARRAY should be a vector of lists, indexed by the name's hash
730 value, modulo OBARRAY's length. Each list has the form
731 ((SYMBOL . VALUE) ...), where SYMBOL is a symbol, and VALUE is the
732 value associated with that symbol (in the current module? in the
733 system module?)
734
735 To "intern" a symbol means: if OBARRAY already contains a symbol by
736 that name, return its (SYMBOL . VALUE) pair; otherwise, create a
737 new symbol, add the pair (SYMBOL . SCM_UNDEFINED) to the
738 appropriate list of the OBARRAY, and return the pair.
739
740 If softness is non-zero, don't create a symbol if it isn't already
741 in OBARRAY; instead, just return #f.
742
743 If OBARRAY is SCM_BOOL_F, create a symbol listed in no obarray and
744 return (SYMBOL . SCM_UNDEFINED). */
745
746
747SCM
748scm_intern_obarray_soft (const char *name,size_t len,SCM obarray,unsigned int softness)
749{
3ee86942
MV
750 SCM symbol = scm_from_locale_symboln (name, len);
751 size_t raw_hash = scm_i_symbol_hash (symbol);
cc5c1b66
MV
752 size_t hash;
753 SCM lsym;
754
755 scm_c_issue_deprecation_warning ("`scm_intern_obarray_soft' is deprecated. "
756 "Use hashtables instead.");
757
7888309b 758 if (scm_is_false (obarray))
cc5c1b66
MV
759 {
760 if (softness)
761 return SCM_BOOL_F;
762 else
763 return scm_cons (symbol, SCM_UNDEFINED);
764 }
765
766 hash = raw_hash % SCM_VECTOR_LENGTH (obarray);
767
768 for (lsym = SCM_VECTOR_REF(obarray, hash);
769 SCM_NIMP (lsym); lsym = SCM_CDR (lsym))
770 {
771 SCM a = SCM_CAR (lsym);
772 SCM z = SCM_CAR (a);
bc36d050 773 if (scm_is_eq (z, symbol))
cc5c1b66
MV
774 return a;
775 }
776
777 if (softness)
778 {
779 return SCM_BOOL_F;
780 }
781 else
782 {
783 SCM cell = scm_cons (symbol, SCM_UNDEFINED);
784 SCM slot = SCM_VECTOR_REF (obarray, hash);
785
786 SCM_VECTOR_SET (obarray, hash, scm_cons (cell, slot));
787
788 return cell;
789 }
790}
791
792
793SCM
794scm_intern_obarray (const char *name,size_t len,SCM obarray)
795{
796 scm_c_issue_deprecation_warning ("`scm_intern_obarray' is deprecated. "
797 "Use hashtables instead.");
798
799 return scm_intern_obarray_soft (name, len, obarray, 0);
800}
801
802/* Lookup the value of the symbol named by the nul-terminated string
803 NAME in the current module. */
804SCM
805scm_symbol_value0 (const char *name)
806{
807 scm_c_issue_deprecation_warning ("`scm_symbol_value0' is deprecated. "
808 "Use `scm_lookup' instead.");
809
810 return scm_variable_ref (scm_c_lookup (name));
811}
812
813SCM_DEFINE (scm_string_to_obarray_symbol, "string->obarray-symbol", 2, 1, 0,
814 (SCM o, SCM s, SCM softp),
815 "Intern a new symbol in @var{obarray}, a symbol table, with name\n"
816 "@var{string}.\n\n"
817 "If @var{obarray} is @code{#f}, use the default system symbol table. If\n"
818 "@var{obarray} is @code{#t}, the symbol should not be interned in any\n"
819 "symbol table; merely return the pair (@var{symbol}\n"
820 ". @var{#<undefined>}).\n\n"
821 "The @var{soft?} argument determines whether new symbol table entries\n"
822 "should be created when the specified symbol is not already present in\n"
823 "@var{obarray}. If @var{soft?} is specified and is a true value, then\n"
824 "new entries should not be added for symbols not already present in the\n"
825 "table; instead, simply return @code{#f}.")
826#define FUNC_NAME s_scm_string_to_obarray_symbol
827{
828 SCM vcell;
829 SCM answer;
830 int softness;
831
832 SCM_VALIDATE_STRING (2, s);
7888309b 833 SCM_ASSERT (scm_is_bool (o) || SCM_VECTORP (o), o, SCM_ARG1, FUNC_NAME);
cc5c1b66
MV
834
835 scm_c_issue_deprecation_warning ("`string->obarray-symbol' is deprecated. "
836 "Use hashtables instead.");
837
7888309b 838 softness = (!SCM_UNBNDP (softp) && scm_is_true(softp));
cc5c1b66 839 /* iron out some screwy calling conventions */
7888309b 840 if (scm_is_false (o))
cc5c1b66
MV
841 {
842 /* nothing interesting to do here. */
843 return scm_string_to_symbol (s);
844 }
bc36d050 845 else if (scm_is_eq (o, SCM_BOOL_T))
cc5c1b66
MV
846 o = SCM_BOOL_F;
847
3ee86942
MV
848 vcell = scm_intern_obarray_soft (scm_i_string_chars (s),
849 scm_i_string_length (s),
cc5c1b66
MV
850 o,
851 softness);
7888309b 852 if (scm_is_false (vcell))
cc5c1b66
MV
853 return vcell;
854 answer = SCM_CAR (vcell);
855 return answer;
856}
857#undef FUNC_NAME
858
859SCM_DEFINE (scm_intern_symbol, "intern-symbol", 2, 0, 0,
860 (SCM o, SCM s),
861 "Add a new symbol to @var{obarray} with name @var{string}, bound to an\n"
862 "unspecified initial value. The symbol table is not modified if a symbol\n"
863 "with this name is already present.")
864#define FUNC_NAME s_scm_intern_symbol
865{
866 size_t hval;
867 SCM_VALIDATE_SYMBOL (2,s);
7888309b 868 if (scm_is_false (o))
cc5c1b66
MV
869 return SCM_UNSPECIFIED;
870
871 scm_c_issue_deprecation_warning ("`intern-symbol' is deprecated. "
872 "Use hashtables instead.");
873
874 SCM_VALIDATE_VECTOR (1,o);
3ee86942 875 hval = scm_i_symbol_hash (s) % SCM_VECTOR_LENGTH (o);
cc5c1b66 876 /* If the symbol is already interned, simply return. */
9de87eea 877 SCM_CRITICAL_SECTION_START;
cc5c1b66
MV
878 {
879 SCM lsym;
880 SCM sym;
881 for (lsym = SCM_VECTOR_REF (o, hval);
882 SCM_NIMP (lsym);
883 lsym = SCM_CDR (lsym))
884 {
885 sym = SCM_CAR (lsym);
bc36d050 886 if (scm_is_eq (SCM_CAR (sym), s))
cc5c1b66 887 {
9de87eea 888 SCM_CRITICAL_SECTION_END;
cc5c1b66
MV
889 return SCM_UNSPECIFIED;
890 }
891 }
892 SCM_VECTOR_SET (o, hval,
893 scm_acons (s, SCM_UNDEFINED,
894 SCM_VECTOR_REF (o, hval)));
895 }
9de87eea 896 SCM_CRITICAL_SECTION_END;
cc5c1b66
MV
897 return SCM_UNSPECIFIED;
898}
899#undef FUNC_NAME
900
901SCM_DEFINE (scm_unintern_symbol, "unintern-symbol", 2, 0, 0,
902 (SCM o, SCM s),
903 "Remove the symbol with name @var{string} from @var{obarray}. This\n"
904 "function returns @code{#t} if the symbol was present and @code{#f}\n"
905 "otherwise.")
906#define FUNC_NAME s_scm_unintern_symbol
907{
908 size_t hval;
909
910 scm_c_issue_deprecation_warning ("`unintern-symbol' is deprecated. "
911 "Use hashtables instead.");
912
913 SCM_VALIDATE_SYMBOL (2,s);
7888309b 914 if (scm_is_false (o))
cc5c1b66
MV
915 return SCM_BOOL_F;
916 SCM_VALIDATE_VECTOR (1,o);
3ee86942 917 hval = scm_i_symbol_hash (s) % SCM_VECTOR_LENGTH (o);
9de87eea 918 SCM_CRITICAL_SECTION_START;
cc5c1b66
MV
919 {
920 SCM lsym_follow;
921 SCM lsym;
922 SCM sym;
923 for (lsym = SCM_VECTOR_REF (o, hval), lsym_follow = SCM_BOOL_F;
924 SCM_NIMP (lsym);
925 lsym_follow = lsym, lsym = SCM_CDR (lsym))
926 {
927 sym = SCM_CAR (lsym);
bc36d050 928 if (scm_is_eq (SCM_CAR (sym), s))
cc5c1b66
MV
929 {
930 /* Found the symbol to unintern. */
7888309b 931 if (scm_is_false (lsym_follow))
cc5c1b66
MV
932 SCM_VECTOR_SET (o, hval, lsym);
933 else
934 SCM_SETCDR (lsym_follow, SCM_CDR(lsym));
9de87eea 935 SCM_CRITICAL_SECTION_END;
cc5c1b66
MV
936 return SCM_BOOL_T;
937 }
938 }
939 }
9de87eea 940 SCM_CRITICAL_SECTION_END;
cc5c1b66
MV
941 return SCM_BOOL_F;
942}
943#undef FUNC_NAME
944
945SCM_DEFINE (scm_symbol_binding, "symbol-binding", 2, 0, 0,
946 (SCM o, SCM s),
947 "Look up in @var{obarray} the symbol whose name is @var{string}, and\n"
948 "return the value to which it is bound. If @var{obarray} is @code{#f},\n"
949 "use the global symbol table. If @var{string} is not interned in\n"
950 "@var{obarray}, an error is signalled.")
951#define FUNC_NAME s_scm_symbol_binding
952{
953 SCM vcell;
954
955 scm_c_issue_deprecation_warning ("`symbol-binding' is deprecated. "
956 "Use hashtables instead.");
957
958 SCM_VALIDATE_SYMBOL (2,s);
7888309b 959 if (scm_is_false (o))
cc5c1b66
MV
960 return scm_variable_ref (scm_lookup (s));
961 SCM_VALIDATE_VECTOR (1,o);
962 vcell = scm_sym2ovcell (s, o);
963 return SCM_CDR(vcell);
964}
965#undef FUNC_NAME
966
967#if 0
968SCM_DEFINE (scm_symbol_interned_p, "symbol-interned?", 2, 0, 0,
969 (SCM o, SCM s),
970 "Return @code{#t} if @var{obarray} contains a symbol with name\n"
971 "@var{string}, and @code{#f} otherwise.")
972#define FUNC_NAME s_scm_symbol_interned_p
973{
974 SCM vcell;
975
976 scm_c_issue_deprecation_warning ("`symbol-interned?' is deprecated. "
977 "Use hashtables instead.");
978
979 SCM_VALIDATE_SYMBOL (2,s);
7888309b 980 if (scm_is_false (o))
cc5c1b66
MV
981 {
982 SCM var = scm_sym2var (s, SCM_BOOL_F, SCM_BOOL_F);
983 if (var != SCM_BOOL_F)
984 return SCM_BOOL_T;
985 return SCM_BOOL_F;
986 }
987 SCM_VALIDATE_VECTOR (1,o);
988 vcell = scm_sym2ovcell_soft (s, o);
989 return (SCM_NIMP(vcell)
990 ? SCM_BOOL_T
991 : SCM_BOOL_F);
992}
993#undef FUNC_NAME
994#endif
995
996SCM_DEFINE (scm_symbol_bound_p, "symbol-bound?", 2, 0, 0,
997 (SCM o, SCM s),
998 "Return @code{#t} if @var{obarray} contains a symbol with name\n"
999 "@var{string} bound to a defined value. This differs from\n"
1000 "@var{symbol-interned?} in that the mere mention of a symbol\n"
1001 "usually causes it to be interned; @code{symbol-bound?}\n"
1002 "determines whether a symbol has been given any meaningful\n"
1003 "value.")
1004#define FUNC_NAME s_scm_symbol_bound_p
1005{
1006 SCM vcell;
1007
1008 scm_c_issue_deprecation_warning ("`symbol-bound?' is deprecated. "
1009 "Use hashtables instead.");
1010
1011 SCM_VALIDATE_SYMBOL (2,s);
7888309b 1012 if (scm_is_false (o))
cc5c1b66
MV
1013 {
1014 SCM var = scm_sym2var (s, SCM_BOOL_F, SCM_BOOL_F);
1015 if (SCM_VARIABLEP(var) && !SCM_UNBNDP(SCM_VARIABLE_REF(var)))
1016 return SCM_BOOL_T;
1017 return SCM_BOOL_F;
1018 }
1019 SCM_VALIDATE_VECTOR (1,o);
1020 vcell = scm_sym2ovcell_soft (s, o);
7888309b 1021 return scm_from_bool (SCM_NIMP (vcell) && !SCM_UNBNDP (SCM_CDR (vcell)));
cc5c1b66
MV
1022}
1023#undef FUNC_NAME
1024
1025
1026SCM_DEFINE (scm_symbol_set_x, "symbol-set!", 3, 0, 0,
1027 (SCM o, SCM s, SCM v),
1028 "Find the symbol in @var{obarray} whose name is @var{string}, and rebind\n"
1029 "it to @var{value}. An error is signalled if @var{string} is not present\n"
1030 "in @var{obarray}.")
1031#define FUNC_NAME s_scm_symbol_set_x
1032{
1033 SCM vcell;
1034
1035 scm_c_issue_deprecation_warning ("`symbol-set!' is deprecated. "
1036 "Use the module system instead.");
1037
1038 SCM_VALIDATE_SYMBOL (2,s);
7888309b 1039 if (scm_is_false (o))
cc5c1b66
MV
1040 {
1041 scm_define (s, v);
1042 return SCM_UNSPECIFIED;
1043 }
1044 SCM_VALIDATE_VECTOR (1,o);
1045 vcell = scm_sym2ovcell (s, o);
1046 SCM_SETCDR (vcell, v);
1047 return SCM_UNSPECIFIED;
1048}
1049#undef FUNC_NAME
1050
1051#define MAX_PREFIX_LENGTH 30
1052
1053static int gentemp_counter;
1054
1055SCM_DEFINE (scm_gentemp, "gentemp", 0, 2, 0,
1056 (SCM prefix, SCM obarray),
1057 "Create a new symbol with a name unique in an obarray.\n"
1058 "The name is constructed from an optional string @var{prefix}\n"
1059 "and a counter value. The default prefix is @code{t}. The\n"
1060 "@var{obarray} is specified as a second optional argument.\n"
1061 "Default is the system obarray where all normal symbols are\n"
1062 "interned. The counter is increased by 1 at each\n"
1063 "call. There is no provision for resetting the counter.")
1064#define FUNC_NAME s_scm_gentemp
1065{
1066 char buf[MAX_PREFIX_LENGTH + SCM_INTBUFLEN];
1067 char *name = buf;
1068 int len, n_digits;
1069
1070 scm_c_issue_deprecation_warning ("`gentemp' is deprecated. "
1071 "Use `gensym' instead.");
1072
1073 if (SCM_UNBNDP (prefix))
1074 {
1075 name[0] = 't';
1076 len = 1;
1077 }
1078 else
1079 {
1080 SCM_VALIDATE_STRING (1, prefix);
3ee86942 1081 len = scm_i_string_length (prefix);
cc5c1b66
MV
1082 if (len > MAX_PREFIX_LENGTH)
1083 name = SCM_MUST_MALLOC (MAX_PREFIX_LENGTH + SCM_INTBUFLEN);
3ee86942 1084 strncpy (name, scm_i_string_chars (prefix), len);
cc5c1b66
MV
1085 }
1086
1087 if (SCM_UNBNDP (obarray))
1088 return scm_gensym (prefix);
1089 else
4057a3e0 1090 SCM_ASSERT ((scm_is_vector (obarray) || SCM_I_WVECTP (obarray)),
cc5c1b66
MV
1091 obarray,
1092 SCM_ARG2,
1093 FUNC_NAME);
1094 do
1095 n_digits = scm_iint2str (gentemp_counter++, 10, &name[len]);
7888309b 1096 while (scm_is_true (scm_intern_obarray_soft (name,
cc5c1b66
MV
1097 len + n_digits,
1098 obarray,
1099 1)));
1100 {
1101 SCM vcell = scm_intern_obarray_soft (name,
1102 len + n_digits,
1103 obarray,
1104 0);
1105 if (name != buf)
1106 scm_must_free (name);
1107 return SCM_CAR (vcell);
1108 }
1109}
1110#undef FUNC_NAME
1111
7888309b 1112SCM
fe78c51a 1113scm_i_makinum (scm_t_signed_bits val)
7888309b
MV
1114{
1115 scm_c_issue_deprecation_warning
1116 ("SCM_MAKINUM is deprecated. Use scm_from_int or similar instead.");
3aa13a05
MV
1117 return SCM_I_MAKINUM (val);
1118}
1119
1120int
fe78c51a 1121scm_i_inump (SCM obj)
3aa13a05
MV
1122{
1123 scm_c_issue_deprecation_warning
1124 ("SCM_INUMP is deprecated. Use scm_is_integer or similar instead.");
1125 return SCM_I_INUMP (obj);
1126}
1127
1128scm_t_signed_bits
fe78c51a 1129scm_i_inum (SCM obj)
3aa13a05
MV
1130{
1131 scm_c_issue_deprecation_warning
1132 ("SCM_INUM is deprecated. Use scm_to_int or similar instead.");
1133 return scm_to_intmax (obj);
7888309b 1134}
7888309b 1135
c829a427
MV
1136char *
1137scm_c_string2str (SCM obj, char *str, size_t *lenp)
1138{
1139 scm_c_issue_deprecation_warning
1140 ("scm_c_string2str is deprecated. Use scm_to_locale_stringbuf or similar instead.");
1141
1142 if (str == NULL)
1143 {
1144 char *result = scm_to_locale_string (obj);
1145 if (lenp)
3ee86942 1146 *lenp = scm_i_string_length (obj);
c829a427
MV
1147 return result;
1148 }
1149 else
1150 {
1151 /* Pray that STR is large enough.
1152 */
1153 size_t len = scm_to_locale_stringbuf (obj, str, SCM_I_SIZE_MAX);
1154 str[len] = '\0';
1155 if (lenp)
1156 *lenp = len;
1157 return str;
1158 }
1159}
1160
1161char *
1162scm_c_substring2str (SCM obj, char *str, size_t start, size_t len)
1163{
1164 scm_c_issue_deprecation_warning
1165 ("scm_c_substring2str is deprecated. Use scm_substring plus scm_to_locale_stringbuf instead.");
1166
1167 if (start)
1168 obj = scm_substring (obj, scm_from_size_t (start), SCM_UNDEFINED);
1169
1170 scm_to_locale_stringbuf (obj, str, len);
1171 return str;
1172}
1173
3ee86942
MV
1174/* Converts the given Scheme symbol OBJ into a C string, containing a copy
1175 of OBJ's content with a trailing null byte. If LENP is non-NULL, set
1176 *LENP to the string's length.
1177
1178 When STR is non-NULL it receives the copy and is returned by the function,
1179 otherwise new memory is allocated and the caller is responsible for
1180 freeing it via free(). If out of memory, NULL is returned.
1181
1182 Note that Scheme symbols may contain arbitrary data, including null
1183 characters. This means that null termination is not a reliable way to
1184 determine the length of the returned value. However, the function always
1185 copies the complete contents of OBJ, and sets *LENP to the length of the
1186 scheme symbol (if LENP is non-null). */
1187char *
1188scm_c_symbol2str (SCM obj, char *str, size_t *lenp)
1189{
1190 return scm_c_string2str (scm_symbol_to_string (obj), str, lenp);
1191}
1192
3101f40f
MV
1193double
1194scm_truncate (double x)
1195{
1196 scm_c_issue_deprecation_warning
1197 ("scm_truncate is deprecated. Use scm_c_truncate instead.");
1198 return scm_c_truncate (x);
1199}
1200
1201double
1202scm_round (double x)
1203{
1204 scm_c_issue_deprecation_warning
1205 ("scm_round is deprecated. Use scm_c_round instead.");
1206 return scm_c_round (x);
1207}
1208
3ee86942 1209char *
fe78c51a 1210scm_i_deprecated_symbol_chars (SCM sym)
3ee86942
MV
1211{
1212 scm_c_issue_deprecation_warning
1213 ("SCM_SYMBOL_CHARS is deprecated. Use scm_symbol_to_string.");
1214
ba16a103 1215 return (char *)scm_i_symbol_chars (sym);
3ee86942
MV
1216}
1217
1218size_t
fe78c51a 1219scm_i_deprecated_symbol_length (SCM sym)
3ee86942
MV
1220{
1221 scm_c_issue_deprecation_warning
1222 ("SCM_SYMBOL_LENGTH is deprecated. Use scm_symbol_to_string.");
ba16a103 1223 return scm_i_symbol_length (sym);
3ee86942
MV
1224}
1225
265a7997 1226int
fe78c51a 1227scm_i_keywordp (SCM obj)
265a7997
MV
1228{
1229 scm_c_issue_deprecation_warning
1230 ("SCM_KEYWORDP is deprecated. Use scm_is_keyword instead.");
1231 return scm_is_keyword (obj);
1232}
1233
1234SCM
fe78c51a 1235scm_i_keywordsym (SCM keyword)
265a7997
MV
1236{
1237 scm_c_issue_deprecation_warning
1238 ("SCM_KEYWORDSYM is deprecated. See scm_keyword_to_symbol instead.");
1239 return scm_keyword_dash_symbol (keyword);
1240}
1241
354116f7 1242int
fe78c51a 1243scm_i_vectorp (SCM x)
354116f7
MV
1244{
1245 scm_c_issue_deprecation_warning
1246 ("SCM_VECTORP is deprecated. Use scm_is_vector instead.");
1247 return SCM_I_IS_VECTOR (x);
1248}
1249
1250unsigned long
fe78c51a 1251scm_i_vector_length (SCM x)
354116f7
MV
1252{
1253 scm_c_issue_deprecation_warning
1254 ("SCM_VECTOR_LENGTH is deprecated. Use scm_c_vector_length instead.");
1255 return SCM_I_VECTOR_LENGTH (x);
1256}
1257
1258const SCM *
fe78c51a 1259scm_i_velts (SCM x)
354116f7
MV
1260{
1261 scm_c_issue_deprecation_warning
1262 ("SCM_VELTS is deprecated. Use scm_vector_elements instead.");
1263 return SCM_I_VECTOR_ELTS (x);
1264}
1265
1266SCM *
fe78c51a 1267scm_i_writable_velts (SCM x)
354116f7
MV
1268{
1269 scm_c_issue_deprecation_warning
1270 ("SCM_WRITABLE_VELTS is deprecated. "
1271 "Use scm_vector_writable_elements instead.");
1272 return SCM_I_VECTOR_WELTS (x);
1273}
1274
1275SCM
fe78c51a 1276scm_i_vector_ref (SCM x, size_t idx)
354116f7
MV
1277{
1278 scm_c_issue_deprecation_warning
1279 ("SCM_VECTOR_REF is deprecated. "
1280 "Use scm_c_vector_ref or scm_vector_elements instead.");
1281 return scm_c_vector_ref (x, idx);
1282}
1283
1284void
fe78c51a 1285scm_i_vector_set (SCM x, size_t idx, SCM val)
354116f7
MV
1286{
1287 scm_c_issue_deprecation_warning
1288 ("SCM_VECTOR_SET is deprecated. "
1289 "Use scm_c_vector_set_x or scm_vector_writable_elements instead.");
1290 scm_c_vector_set_x (x, idx, val);
1291}
1292
1293SCM
1294scm_vector_equal_p (SCM x, SCM y)
1295{
1296 scm_c_issue_deprecation_warning
1297 ("scm_vector_euqal_p is deprecated. "
1298 "Use scm_equal_p instead.");
1299 return scm_equal_p (x, y);
1300}
1301
1f366ef7 1302int
fe78c51a 1303scm_i_arrayp (SCM a)
1f366ef7
MV
1304{
1305 scm_c_issue_deprecation_warning
1306 ("SCM_ARRAYP is deprecated. Use scm_is_array instead.");
1307 return SCM_I_ARRAYP(a) || SCM_I_ENCLOSED_ARRAYP(a);
1308}
1309
1310size_t
fe78c51a 1311scm_i_array_ndim (SCM a)
1f366ef7
MV
1312{
1313 scm_c_issue_deprecation_warning
1314 ("SCM_ARRAY_NDIM is deprecated. "
1315 "Use scm_c_array_rank or scm_array_handle_rank instead.");
1316 return scm_c_array_rank (a);
1317}
1318
1319int
fe78c51a 1320scm_i_array_contp (SCM a)
1f366ef7
MV
1321{
1322 scm_c_issue_deprecation_warning
1323 ("SCM_ARRAY_CONTP is deprecated. Do not use it.");
1324 return SCM_I_ARRAY_CONTP (a);
1325}
1326
1327scm_t_array *
fe78c51a 1328scm_i_array_mem (SCM a)
1f366ef7
MV
1329{
1330 scm_c_issue_deprecation_warning
1331 ("SCM_ARRAY_MEM is deprecated. Do not use it.");
1332 return (scm_t_array *)SCM_I_ARRAY_MEM (a);
1333}
1334
1335SCM
fe78c51a 1336scm_i_array_v (SCM a)
1f366ef7
MV
1337{
1338 /* We could use scm_shared_array_root here, but it is better to move
1339 them away from expecting vectors as the basic storage for arrays.
1340 */
1341 scm_c_issue_deprecation_warning
1342 ("SCM_ARRAY_V is deprecated. Do not use it.");
1343 return SCM_I_ARRAY_V (a);
1344}
1345
1346size_t
fe78c51a 1347scm_i_array_base (SCM a)
1f366ef7
MV
1348{
1349 scm_c_issue_deprecation_warning
1350 ("SCM_ARRAY_BASE is deprecated. Do not use it.");
1351 return SCM_I_ARRAY_BASE (a);
1352}
1353
1354scm_t_array_dim *
fe78c51a 1355scm_i_array_dims (SCM a)
1f366ef7
MV
1356{
1357 scm_c_issue_deprecation_warning
1358 ("SCM_ARRAY_DIMS is deprecated. Use scm_array_handle_dims instead.");
1359 return SCM_I_ARRAY_DIMS (a);
1360}
1361
9de87eea
MV
1362SCM
1363scm_i_cur_inp (void)
1364{
1365 scm_c_issue_deprecation_warning
1366 ("scm_cur_inp is deprecated. Use scm_current_input_port instead.");
1367 return scm_current_input_port ();
1368}
1369
1370SCM
1371scm_i_cur_outp (void)
1372{
1373 scm_c_issue_deprecation_warning
1374 ("scm_cur_outp is deprecated. Use scm_current_output_port instead.");
1375 return scm_current_output_port ();
1376}
1377
1378SCM
1379scm_i_cur_errp (void)
1380{
1381 scm_c_issue_deprecation_warning
1382 ("scm_cur_errp is deprecated. Use scm_current_error_port instead.");
1383 return scm_current_error_port ();
1384}
1385
1386SCM
1387scm_i_cur_loadp (void)
1388{
1389 scm_c_issue_deprecation_warning
1390 ("scm_cur_loadp is deprecated. Use scm_current_load_port instead.");
1391 return scm_current_load_port ();
1392}
1393
1394SCM
1395scm_i_progargs (void)
1396{
1397 scm_c_issue_deprecation_warning
1398 ("scm_progargs is deprecated. Use scm_program_arguments instead.");
1399 return scm_program_arguments ();
1400}
1401
1402SCM
1403scm_i_deprecated_dynwinds (void)
1404{
1405 scm_c_issue_deprecation_warning
1406 ("scm_dynwinds is deprecated. Do not use it.");
1407 return scm_i_dynwinds ();
1408}
1409
1410scm_t_debug_frame *
1411scm_i_deprecated_last_debug_frame (void)
1412{
1413 scm_c_issue_deprecation_warning
1414 ("scm_last_debug_frame is deprecated. Do not use it.");
1415 return scm_i_last_debug_frame ();
1416}
1417
1418SCM_STACKITEM *
1419scm_i_stack_base (void)
1420{
1421 scm_c_issue_deprecation_warning
1422 ("scm_stack_base is deprecated. Do not use it.");
1423 return SCM_I_CURRENT_THREAD->base;
1424}
1425
1426int
1427scm_i_fluidp (SCM x)
1428{
1429 scm_c_issue_deprecation_warning
1430 ("SCM_FLUIDP is deprecated. Use scm_is_fluid instead.");
1431 return scm_is_fluid (x);
1432}
1433
1434void
1435scm_i_defer_ints_etc ()
1436{
1437 scm_c_issue_deprecation_warning
1438 ("SCM_CRITICAL_SECTION_START etc are deprecated. "
1439 "Use a mutex instead if appropriate.");
1440}
1441
19e2247d
MV
1442void
1443scm_i_init_deprecated ()
1444{
1445#include "libguile/deprecated.x"
1446}
1447
1448#endif