Skip to content

Commit e4a141e

Browse files
committed
Remove form-feed character (^L)
1 parent e45f87d commit e4a141e

2 files changed

Lines changed: 25 additions & 25 deletions

File tree

dsl/es.c

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ static EsObjectClass *classes[ES_TYPE_CLASS_MAX] = {
290290
[ES_TYPE_ERROR] = &es_error_class,
291291
};
292292

293-
293+
294294

295295
static MIO *mio_stdout (void)
296296
{
@@ -322,7 +322,7 @@ static MIO *mio_stderr (void)
322322
return out;
323323
}
324324

325-
325+
326326

327327
static EsObjectClass*
328328
class_of(const EsObject* object)
@@ -1665,7 +1665,7 @@ es_fatptr_get (const EsObject *object)
16651665
return ((EsPointer *)object)->fat;
16661666
}
16671667

1668-
1668+
16691669

16701670
/* http://www.cse.yorku.ca/~oz/hash.html */
16711671
static unsigned long
@@ -1684,7 +1684,7 @@ static unsigned int hash(const char* keyarg)
16841684
{
16851685
return ((unsigned int)djb2((unsigned char *)keyarg)) % OBARRAY_SIZE;
16861686
}
1687-
1687+
16881688
/*
16891689
* Print
16901690
*/
@@ -1793,7 +1793,7 @@ es_comment_to_string (const char* comment)
17931793

17941794

17951795

1796-
1796+
17971797
/*
17981798
* Read
17991799
*/
@@ -2600,7 +2600,7 @@ es_read_from_string(const char* buf,
26002600
}
26012601

26022602

2603-
2603+
26042604
typedef struct _EsAutounrefPool EsAutounrefPool;
26052605
typedef struct _EsChain EsChain;
26062606

@@ -2815,7 +2815,7 @@ es_append1(EsObject* tail, EsObject* body0)
28152815
}
28162816

28172817

2818-
2818+
28192819
static EsObject* pattern_d = NULL;
28202820
static EsObject* pattern_f = NULL;
28212821
static EsObject* pattern_F = NULL;

dsl/optscript.c

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ declop(putinterval);
396396
declop(_copyinterval);
397397
/* -getinterval .... */
398398

399-
399+
400400
/*
401401
* Public functions
402402
*/
@@ -956,7 +956,7 @@ const char* opt_name_get_cstr (const EsObject *name)
956956
return es_symbol_get (name);
957957
}
958958

959-
959+
960960
/*
961961
* VM
962962
*/
@@ -1959,7 +1959,7 @@ vm_bind_proc (OptVM *vm, ptrArray *proc)
19591959
}
19601960
}
19611961

1962-
1962+
19631963
/*
19641964
* Array
19651965
*/
@@ -2043,7 +2043,7 @@ array_op_put (EsObject* array, unsigned int n, EsObject *obj)
20432043
es_object_ref (obj), es_nil);
20442044
}
20452045

2046-
2046+
20472047
/*
20482048
* Dictionary
20492049
*/
@@ -2175,7 +2175,7 @@ dict_op_clear (EsObject* dict)
21752175
hashTableClear (h);
21762176
}
21772177

2178-
2178+
21792179
/*
21802180
* Operator
21812181
*/
@@ -2310,7 +2310,7 @@ string_es_print (const void *ptr, const void *fat, MIO *out)
23102310
mio_putc (out, ')');
23112311
}
23122312

2313-
2313+
23142314
/*
23152315
* Name
23162316
*/
@@ -2400,7 +2400,7 @@ mark_es_equal (const void *a, const void *b)
24002400
return 1;
24012401
}
24022402

2403-
2403+
24042404
/*
24052405
* Operator implementations
24062406
*/
@@ -2594,7 +2594,7 @@ op_execstack (OptVM *vm, EsObject *name)
25942594
return op__stack_common (vm, name, vm->estack, obj, true);
25952595
}
25962596

2597-
2597+
25982598
/*
25992599
* Operators for operand stack manipulation
26002600
*/
@@ -2844,7 +2844,7 @@ op_counttomark (OptVM *vm, EsObject *name)
28442844
return es_false;
28452845
}
28462846

2847-
2847+
28482848
/*
28492849
* Arithmetic Operators
28502850
*/
@@ -2931,7 +2931,7 @@ op_neg (OptVM *vm, EsObject *name)
29312931
return es_false;
29322932
}
29332933

2934-
2934+
29352935
/*
29362936
* Operators for array manipulation
29372937
*/
@@ -3014,7 +3014,7 @@ op_aload (OptVM *vm, EsObject *name)
30143014
return es_false;
30153015
}
30163016

3017-
3017+
30183018
/*
30193019
* Operators for dictionary manipulation
30203020
*/
@@ -3221,7 +3221,7 @@ op_load (OptVM *vm, EsObject *name)
32213221
}
32223222
}
32233223

3224-
3224+
32253225
/*
32263226
* Operators for string manipulation
32273227
*/
@@ -3393,7 +3393,7 @@ op__strpbrk (OptVM *vm, EsObject *name)
33933393
}
33943394
}
33953395

3396-
3396+
33973397
/*
33983398
* Relation, logical, and bit operators
33993399
*/
@@ -3410,7 +3410,7 @@ op__eq_full (OptVM *vm, EsObject *name, bool inversion)
34103410
return es_false;
34113411
}
34123412

3413-
3413+
34143414
/*
34153415
* Relation, logical, and bit operators
34163416
*/
@@ -3597,7 +3597,7 @@ op_bitshift (OptVM *vm, EsObject *name)
35973597
return es_false;
35983598
}
35993599

3600-
3600+
36013601
/*
36023602
* Operators for control flow
36033603
*/
@@ -3808,7 +3808,7 @@ op_for (OptVM *vm, EsObject *name)
38083808
return r;
38093809
}
38103810

3811-
3811+
38123812
/*
38133813
* Operators for type, attribute and their conversion
38143814
*/
@@ -3854,7 +3854,7 @@ op_cvn (OptVM *vm, EsObject *name)
38543854
return es_false;
38553855
}
38563856

3857-
3857+
38583858
/*
38593859
* Misc operators
38603860
*/
@@ -3877,7 +3877,7 @@ op_bind (OptVM *vm, EsObject *name)
38773877
return es_false;
38783878
}
38793879

3880-
3880+
38813881
/*
38823882
* Methods for compound objects
38833883
*/

0 commit comments

Comments
 (0)