mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-29 07:32:02 +00:00
String.[hr] -> SchemeString.[hr], for the sake of case-insensitive
filesystems.
This commit is contained in:
parent
d9a7214c2a
commit
111df712fa
5 changed files with 4 additions and 4 deletions
|
@ -4,7 +4,7 @@
|
||||||
#include "Array.h"
|
#include "Array.h"
|
||||||
#include "Instruction.h"
|
#include "Instruction.h"
|
||||||
#include "Frame.h"
|
#include "Frame.h"
|
||||||
#include "String.h"
|
#include "SchemeString.h"
|
||||||
|
|
||||||
struct lineinfo_s {
|
struct lineinfo_s {
|
||||||
integer linenumber;
|
integer linenumber;
|
||||||
|
|
|
@ -42,7 +42,7 @@ EXTRA_DATA = $(scheme_data)
|
||||||
$(QFCC) $(QCFLAGS) $(QCPPFLAGS) -c -o $@ $<
|
$(QFCC) $(QCFLAGS) $(QCPPFLAGS) -c -o $@ $<
|
||||||
|
|
||||||
libscheme_a_SOURCES=\
|
libscheme_a_SOURCES=\
|
||||||
SchemeObject.r Cons.r Number.r String.r Symbol.r Lexer.r Parser.r Nil.r \
|
SchemeObject.r Cons.r Number.r SchemeString.r Symbol.r Lexer.r Parser.r Nil.r \
|
||||||
Procedure.r Primitive.r Lambda.r Scope.r Instruction.r builtins.r \
|
Procedure.r Primitive.r Lambda.r Scope.r Instruction.r builtins.r \
|
||||||
Frame.r CompiledCode.r Compiler.r Continuation.r Machine.r Void.r \
|
Frame.r CompiledCode.r Compiler.r Continuation.r Machine.r Void.r \
|
||||||
Error.r Boolean.r BaseContinuation.r
|
Error.r Boolean.r BaseContinuation.r
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#include "string.h"
|
#include "string.h"
|
||||||
#include "String.h"
|
#include "SchemeString.h"
|
||||||
|
|
||||||
@implementation String
|
@implementation String
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#ifndef __Symbol_h
|
#ifndef __Symbol_h
|
||||||
#define __Symbol_h
|
#define __Symbol_h
|
||||||
#include "String.h"
|
#include "SchemeString.h"
|
||||||
|
|
||||||
@interface Symbol: String
|
@interface Symbol: String
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue